diff --git a/.expeditor/config.yml b/.expeditor/config.yml index 24296c84f..442f73308 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -29,6 +29,12 @@ pipelines: env: - SLOW: 1 - NO_AWS: 1 + - coverage: + description: Generate test coverage report + public: true + env: + - CI_ENABLE_COVERAGE: true + - SLOW: 1 # Slack channel in Chef Software slack to send notifications about build failures, etc slack: diff --git a/.expeditor/coverage.pipeline.yml b/.expeditor/coverage.pipeline.yml new file mode 100644 index 000000000..dc8b92119 --- /dev/null +++ b/.expeditor/coverage.pipeline.yml @@ -0,0 +1,10 @@ +steps: + +- label: coverage + command: + - bundle install --jobs=7 --retry=3 --without tools maintenance deploy + - bundle exec rake test + expeditor: + executor: + docker: + image: ruby:2.6-stretch \ No newline at end of file