diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-06-30 15:44:29 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-21 12:44:24 +0200 |
commit | 647da42af99a703fc3af3452b39acf0c3dc3050d (patch) | |
tree | 72f2b964b4a6e486cc63e23bd56ca676fbd7dc0f /.gitlab-ci.yml | |
parent | ef30678f1bab04b0f07a60e57966e3eed17c6842 (diff) | |
download | gitlab-ce-647da42af99a703fc3af3452b39acf0c3dc3050d.tar.gz |
Merge coverage report
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2d33bad5886..b0010572833 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,6 +61,15 @@ update-knapsack: only: - master +update-coverage: + <<: *knapsack-state + stage: post-test + script: + - bundle exec rake ci:simplecov:merge + artifacts: + paths: + - coverage/ + # Execute all testing suites .use-db: &use-db @@ -83,6 +92,7 @@ update-knapsack: artifacts: paths: - knapsack/ + - coverage/ .spinach-knapsack: &spinach-knapsack stage: test @@ -99,6 +109,7 @@ update-knapsack: artifacts: paths: - knapsack/ + - coverage/ rspec 0 20: *rspec-knapsack rspec 1 20: *rspec-knapsack |