diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-10-06 17:46:45 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-10-06 17:46:45 +0200 |
commit | 22bf1e14027c6d71afdc6584616bf8c39e0c26d0 (patch) | |
tree | cac092d61e45a41e13ddd0721c8f54b6aca78b9c /bin | |
parent | 563d59ee6acd44001e31c75cd67aee55c5f84ee9 (diff) | |
download | jenkins.debian.net-22bf1e14027c6d71afdc6584616bf8c39e0c26d0.tar.xz |
reproducible: <lynxis> let's try without --payloads
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_coreboot.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 54e95372..0ea0b360 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -114,7 +114,8 @@ sed -i "s#cpus=1#cpus=$NUM_CPU#" util/abuild/abuild sed -i 's#USE_XARGS=1#USE_XARGS=0#g' util/abuild/abuild # actually build everything ionice -c 3 nice \ - bash util/abuild/abuild --payloads none || true # don't fail the full job just because some targets fail + bash util/abuild/abuild || true # don't fail the full job just because some targets fail + #bash util/abuild/abuild --payloads none || true # don't fail the full job just because some targets fail # save results in b1 save_coreboot_results b1 @@ -133,7 +134,8 @@ NEW_NUM_CPU=$(echo $NUM_CPU-1|bc) sed -i "s#cpus=$NUM_CPU#cpus=$NEW_NUM_CPU#" util/abuild/abuild ionice -c 3 nice \ linux64 --uname-2.6 \ - bash util/abuild/abuild --payloads none || true # don't fail the full job just because some targets fail + bash util/abuild/abuild || true # don't fail the full job just because some targets fail + #bash util/abuild/abuild --payloads none || true # don't fail the full job just because some targets fail # reset environment to default values again export LANG="en_GB.UTF-8" |