diff options
author | drebs <drebs@riseup.net> | 2017-10-05 07:53:46 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-10-05 09:43:40 -0300 |
commit | ee79459569cd93467afd056412a88d05d2263917 (patch) | |
tree | 0408874e3d2d73c99a6c4f8808c533593e8f13bc /.gitlab-ci.yml | |
parent | c1d3d5ee8f26433aa992e8ffdc5384782a8d4c4a (diff) |
[tests] run benchmarks conditionally
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ed0275d..21458c1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -170,14 +170,15 @@ package:amd64_zesty: time-cpu: <<: *benchmark script: - - /usr/bin/unbuffer tox --recreate -e benchmark-time-cpu -- --couch-url http://couchdb:5984 | /usr/bin/ts -s + - scripts/benchmark/run-benchmarks-ci-job.sh benchmark-time-cpu memory: <<: *benchmark script: - - /usr/bin/unbuffer tox --recreate -e benchmark-memory -- --couch-url http://couchdb:5984 | /usr/bin/ts -s + - scripts/benchmark/run-benchmarks-ci-job.sh benchmark-memory responsiveness: <<: *benchmark script: + - scripts/benchmark/run-benchmarks-ci-job.sh responsiveness - /usr/bin/unbuffer tox --recreate -e responsiveness -- --couch-url http://couchdb:5984 | /usr/bin/ts -s |