aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2015-04-06 23:01:31 +0100
committerChristophe Lyon <christophe.lyon@linaro.org>2015-04-07 15:17:33 +0100
commit4c71f1d55a9c61dd656b1b4978aa834c622355cb (patch)
tree58b73112e2ba39648022249b2a929b28d59d244e /scripts
parent4500e7d2457564af3ea6b4a0f3f509f319e13683 (diff)
Handle excludecheck flag from Jenkins.
The 'excludecheck' Jenkins flag is propagated to: - jenkins.sh/BuildFarm.job - test-backport.sh/Backport.job Support --check flag for native builds too. This patch does not fix the fact that jenkins.sh does not yet support --check, unlike test-backport.sh. Conflicts: test-backport.sh Change-Id: I786edca0fdcec66e95e4097469888a8b0c731c79
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/Backport.job2
-rwxr-xr-xscripts/BuildFarm.job2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Backport.job b/scripts/Backport.job
index 9160cd8d..17612889 100755
--- a/scripts/Backport.job
+++ b/scripts/Backport.job
@@ -55,7 +55,7 @@ esac
if test x"${GERRIT_TOPIC}" != x; then
gcc_branch="gcc.git~${GERRIT_TOPIC}"
fi
-$CONFIG_SHELL -x ${abe_dir}/test-backport.sh --target ${target} ${gcc_branch}
+$CONFIG_SHELL -x ${abe_dir}/test-backport.sh --target ${target} ${gcc_branch}${excludecheck:+ --excludecheck ${excludecheck}}
# force a failure of abe has build problems.
if test $? -gt 0; then
diff --git a/scripts/BuildFarm.job b/scripts/BuildFarm.job
index 681b1aa6..0a1d1adf 100755
--- a/scripts/BuildFarm.job
+++ b/scripts/BuildFarm.job
@@ -42,7 +42,7 @@ rm -fr ${WORKSPACE}/_build
mkdir -p ${WORKSPACE}/_build
cd ${WORKSPACE}/_build
-$CONFIG_SHELL -x ${abe_dir}/jenkins.sh --runtests -l ${languages} -f ${fileserver} ${release} ${bootstrap}
+$CONFIG_SHELL -x ${abe_dir}/jenkins.sh --runtests -l ${languages} -f ${fileserver} ${release} ${bootstrap}${excludecheck:+ --excludecheck ${excludecheck}}
# force a failure of abe has build problems.
if test $? -gt 0; then