summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-01-18 20:21:24 +0100
committerNora Widdecke <nora@sequoia-pgp.org>2021-01-18 20:50:10 +0100
commit2a07f7747b86e74aa0e24f0113a95bd785af7fcc (patch)
tree8d43697eb4ec6d190ed8654faf0202e277f72dc0
parentea345f602091c81bd30a749a8b2fde27030d3d5d (diff)
Make path to critcmp explicit.
-rw-r--r--.gitlab-ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c3daff81..31049e44 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -41,13 +41,15 @@ bullseye:
benchmarks:
stage: test
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bullseye:latest
+ needs: ["rust-stable"]
before_script:
- cargo install critcmp
script:
+ - cd openpgp
- cargo bench -- --save-baseline $CI_COMMIT_SHA
- - critcmp $CI_COMMIT_SHA $CI_COMMIT_BEFORE_SHA
+ - $CARGO_HOME/bin/critcmp $CI_COMMIT_SHA $CI_COMMIT_BEFORE_SHA
after_script: []