summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-02 14:24:57 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2021-07-02 14:24:57 +0000
commit12e704d7ef80c5ab3544dc8e99b0f186be66bc53 (patch)
tree65cfda6024339b3eb535764199ea327eaf27a3d0
parent59d2c7559845c8ed7d546ba6a245eb6db41b9298 (diff)
round-robin.sh: Don't build GCC Go
Go testsuite is unstable and we don't use Go for any of round-robin jobs. Change-Id: I91be6db4726a249d368cc38e7630e4cb9e2b65e9
-rw-r--r--round-robin.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 77c56572..5242114e 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -327,8 +327,14 @@ build_abe ()
shift 2
fi
- if [ x"$project" = x"gcc" ] && [ $# != 0 ]; then
- stage="$stage $*"
+ if [ x"$project" = x"gcc" ]; then
+ # Don't build Go, which has a funky and unstable testsuite.
+ # Stage1 ignores "--set languages=" option, so this applies only
+ # to stage2 builds.
+ stage="$stage --set languages=c,c++,fortran,lto"
+ if [ $# != 0 ]; then
+ stage="$stage $*"
+ fi
fi
action="--build $project"