summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2021-01-27 15:43:12 +0100
committerAzul <azul@riseup.net>2021-02-09 18:21:49 +0100
commit5aa86da6bb81b2c82dffc88632be7d25cdcc1ead (patch)
tree792f239017dd9d1ca732cbaca14e25b6e6881fa3 /.gitlab-ci.yml
parent21d14c8e9eff9ffe9090a8dffe9589186d306b1f (diff)
ci: use bullseye image with prebuild dependencies
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 23add0fc..83df9c4e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -19,7 +19,7 @@ bullseye:
tags:
- linux
stage: build
- image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye:latest
+ image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye-prebuild:latest
dependencies:
- codespell
@@ -33,9 +33,12 @@ bullseye:
- if ! git diff --quiet ; then echo "The build changed the source. Please investigate." ; git diff ; fi
variables:
- CARGO_TARGET_DIR: $CI_PROJECT_DIR/../target.$CI_CONCURRENT_ID.bullseye
+ CARGO_TARGET_DIR: /target
+ CARGO_HOME: /cargo
RUSTFLAGS: -D warnings -A unused-parens
+ after_script: []
+
all_commits:
# Test each commit up to main, to facilitate bisecting.
stage: test