summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-08-23 13:04:37 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2021-10-11 14:54:59 +0200
commit27697be3e5e3bf1af9cf0a3793806fe209776b1a (patch)
tree51d3109fe450169c2eab03c0742aea97feebb9ed
parentace537e5593ee99dbe2a4255018f58486d151e03 (diff)
ci: Use correct keyword for expressing job DAG.
-rw-r--r--.gitlab-ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2966af4..c05fa26e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ build-bullseye:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye-prebuild:latest
- dependencies:
+ needs:
- codespell
script:
- cargo run --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-nettle,compression --example supported-algorithms
@@ -39,7 +39,7 @@ build-bullseye:arm64:
- docker-arm64
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye-prebuild-arm64:latest
- dependencies:
+ needs:
- codespell
when: manual
only:
@@ -62,7 +62,7 @@ bullseye:
- linux
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye-prebuild:latest
- dependencies:
+ needs:
- codespell
script:
- SEQUOIA_CTEST_VALGRIND=/usr/bin/valgrind $MAKE_TOP test
@@ -105,7 +105,7 @@ bullseye:arm64:
when: manual
stage: build
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye-prebuild-arm64:latest
- dependencies:
+ needs:
- codespell
script:
# valgrind reports a false positive, see !1035. Run the tests without it for now.