summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml17
1 files changed, 11 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 94a4e54f..14ecee82 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,30 +20,35 @@ before_script:
- mkdir -p "$(pwd)/cache"
- export XDG_CACHE_HOME="$(pwd)/cache"
+# All of the builds use the same set of sources. The first stage should contain
+# only one job so that, in the case where the source cache is empty, we only
+# have a single job pulling all the sources rather than 5 pulling the same things
+# in parallel.
stages:
- - build
+ - simple
+ - cross
x86_64-native:
- stage: build
+ stage: simple
script:
- bst --colors build gnu-toolchain.bst
armv8b64-cross:
- stage: build
+ stage: cross
script:
- bst --colors build --target-arch=armv8l64 gnu-toolchain/stage2.bst
armv8l64-cross:
- stage: build
+ stage: cross
script:
- bst --colors build --target-arch=armv8l64 gnu-toolchain/stage2.bst
ppc64b-cross:
- stage: build
+ stage: cross
script:
- bst --colors build --target-arch=ppc64b gnu-toolchain/stage2.bst
ppc64l-cross:
- stage: build
+ stage: cross
script:
- bst --colors build --target-arch=ppc64l gnu-toolchain/stage2.bst