diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-09 14:48:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-09 14:48:48 +0200 |
commit | b2600b80b6a962a291a096e80f8c5f7be9029bf6 (patch) | |
tree | 27a49b078e918103b3e352328e8b45952135b51c /bin | |
parent | 7d5a7be85a48651583bef11371079698e56482b2 (diff) | |
download | jenkins.debian.net-b2600b80b6a962a291a096e80f8c5f7be9029bf6.tar.xz |
reproducible netbsd: try harder to build sparc64 and amd64
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_netbsd.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh index 6532f02a..1d32b3da 100755 --- a/bin/reproducible_netbsd.sh +++ b/bin/reproducible_netbsd.sh @@ -14,7 +14,7 @@ common_init "$@" set -e # build for these architectures -MACHINES="amiga" +MACHINES="sparc64 amd64" cleanup_tmpdirs() { cd @@ -73,9 +73,10 @@ export TZ="/usr/share/zoneinfo/Etc/GMT+12" for MACHINE in $MACHINES ; do ionice -c 3 nice \ ./build.sh -j $NUM_CPU -U -u -m ${MACHINE} release + # save results in b1 + save_netbsd_results b1 + echo "${MACHINE} done, first time." done -# save results in b1 -save_netbsd_results b1 echo "=============================================================================" echo "$(date -u) - Building netbsd ${NETBSD_VERSION} - cleaning up between builds." @@ -99,6 +100,9 @@ for MACHINE in $MACHINES ; do ionice -c 3 nice \ linux64 --uname-2.6 \ ./build.sh -j $NEW_NUM_CPU -U -u -m ${MACHINE} release + # save results in b2 + save_netbsd_results b2 + echo "${MACHINE} done, second time." done # reset environment to default values again @@ -108,9 +112,6 @@ export TZ="/usr/share/zoneinfo/UTC" export PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:" umask 0022 -# save results in b2 -save_netbsd_results b2 - # clean up builddir to save space on tmpfs rm -r $TMPBUILDDIR/netbsd |