summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31049e44..dd0e6eb0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -49,10 +49,14 @@ benchmarks:
script:
- cd openpgp
- cargo bench -- --save-baseline $CI_COMMIT_SHA
- - $CARGO_HOME/bin/critcmp $CI_COMMIT_SHA $CI_COMMIT_BEFORE_SHA
+ - $CARGO_HOME/bin/critcmp $CI_COMMIT_SHA $CI_COMMIT_BEFORE_SHA | tee benchmarks.txt
after_script: []
+ artifacts:
+ expose_as: 'benchmarks'
+ paths: ['openpgp/benchmarks.txt']
+
variables:
CARGO_TARGET_DIR: $CI_PROJECT_DIR/../target.benchmarks
RUSTFLAGS: -D warnings -A unused-parens