diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-06 22:56:20 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-06 22:58:41 +0200 |
commit | 5ae6325a75e539f210c99d0c6eb52e7856051862 (patch) | |
tree | 212b1e22c205b64525bf0e3bb8ed54aab47d0f96 | |
parent | ca1f05897fb22ccdf94e5978f2fab7a96dca978c (diff) | |
download | jenkins.debian.net-5ae6325a75e539f210c99d0c6eb52e7856051862.tar.xz |
reproducible coreboot: improve job description and be nice.
-rw-r--r-- | TODO | 4 | ||||
-rwxr-xr-x | bin/reproducible_coreboot.sh | 6 | ||||
-rw-r--r-- | job-cfg/reproducible.yaml | 2 |
3 files changed, 5 insertions, 7 deletions
@@ -226,12 +226,10 @@ egrep -R -l '(debbindiff had trouble comparing|maybe there is still )' /var/lib/ <mapreri> that would be wonderful. * coreboot build job -** add more variations +** add more variations: domain+hostname, PATH, uid+gid, USER, UTS namespace, kernel version, umask ** clone with https * coreboot html ** include rom name via path in dbd output -* coreboot job -** better description * openwrt <pre> diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 43d7ecaa..1243b2aa 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -101,7 +101,7 @@ echo "========================================================================== echo "$(date -u) - Building cross compilers for ${ARCHS} now." echo "=============================================================================" for ARCH in ${ARCHS} ; do - make crossgcc-$ARCH + nice ionice -c 3 make crossgcc-$ARCH done echo "=============================================================================" @@ -115,7 +115,7 @@ NUM_CPU=$(cat /proc/cpuinfo |grep '^processor'|wc -l) 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 -bash util/abuild/abuild || true # don't fail the full job just because some targets fail +nice ionice -c 3 bash util/abuild/abuild || true # don't fail the full job just because some targets fail cd coreboot-builds for i in * ; do @@ -136,7 +136,7 @@ export LC_ALL="fr_CH.UTF-8" # use allmost all cores for second build NEW_NUM_CPU=$(echo $NUM_CPU-1|bc) sed -i "s#cpus=$NUM_CPU#cpus=$NEW_NUM_CPU#" util/abuild/abuild -bash util/abuild/abuild || true # don't fail the full job just because some targets fail +nice ionice -c 3 bash util/abuild/abuild || true # don't fail the full job just because some targets fail export LANG="en_GB.UTF-8" unset LC_ALL diff --git a/job-cfg/reproducible.yaml b/job-cfg/reproducible.yaml index 4676b1b2..d8300d99 100644 --- a/job-cfg/reproducible.yaml +++ b/job-cfg/reproducible.yaml @@ -372,7 +372,7 @@ my_shell: '/srv/jenkins/bin/reproducible_build.sh' my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' - '{name}_coreboot': - my_description: 'Test coreboot for reproducibility.' + my_description: 'Try to rebuild all coreboot ROMs twice (with variations) and investigate them regarding reproducibility.' my_timed: '23 42 23 * *' my_shell: '/srv/jenkins/bin/reproducible_coreboot.sh' my_recipients: 'qa-jenkins-scm@lists.alioth.debian.org' |