Merge pull request #75 from simark/readme
authorMichael Jeanson <mjeanson@gmail.com>
Fri, 8 Oct 2021 20:15:48 +0000 (16:15 -0400)
committerGitHub <noreply@github.com>
Fri, 8 Oct 2021 20:15:48 +0000 (16:15 -0400)
Update jenkins-job-builder installation instructions in README

jobs/binutils-gdb.yaml
scripts/binutils-gdb/build.sh

index 2b3f10d9a0abe77a7368c267a2ddc6ba74c0d879..f30f4fd39ff8328b84688a2028ae9726566b3727 100644 (file)
@@ -1,7 +1,7 @@
 - defaults:
     name: binutils-gdb
     description: |
-      GDB TODO
+      Build and test GDB.
 
       <p>Job is managed by Jenkins Job Builder.</p>
 
index bbeef67a992943bebf4748fe6511f9943c8e213c..726cc1a8f2e4feb09759d44f20a864191b4dbe57 100755 (executable)
@@ -211,8 +211,11 @@ $MAKE -j "$($NPROC)" V=1 MAKEINFO=/bin/true
 $MAKE install DESTDIR="$WORKSPACE"
 
 # Run tests, don't fail now, we want to run the archiving steps
+#
+# Disable ASan leaks reporting, it might break some tests since it adds
+# unexpected output when GDB exits.
 failed_tests=0
-$MAKE -C gdb --keep-going check -j "$($NPROC)" || failed_tests=1
+ASAN_OPTIONS=detect_leaks=0 $MAKE -C gdb --keep-going check -j "$($NPROC)" || failed_tests=1
 
 # Copy the dejagnu test results for archiving before cleaning the build dir
 mkdir "${WORKSPACE}/results"
This page took 0.031896 seconds and 4 git commands to generate.