diff options
-rwxr-xr-x | contrib/ci/jobs/2-test/test.sh | 2 | ||||
-rwxr-xr-x | src/templating/run-original-tests.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh index 882410a98..ad5a2eb32 100755 --- a/contrib/ci/jobs/2-test/test.sh +++ b/contrib/ci/jobs/2-test/test.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -evu +set -evux apt-get update apt-get upgrade -yqq diff --git a/src/templating/run-original-tests.sh b/src/templating/run-original-tests.sh index f9dbe316c..8df0331fb 100755 --- a/src/templating/run-original-tests.sh +++ b/src/templating/run-original-tests.sh @@ -7,7 +7,7 @@ export CFLAGS="-g" function build() { echo "Ensuring clean state on exit ..." - make clean + make clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS mostlyclean-compile mostlyclean-libtool make } @@ -16,7 +16,7 @@ trap build EXIT echo "Ensuring clean state on entry to legacy tests ..." -make clean +make clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS mostlyclean-compile mostlyclean-libtool # The build fails if libjson-c-dev is not installed. # That's OK, we don't otherwise need it and don't |