Merge pull request #767 from mbj/improve/circle-workflows

Change circle workflows for more efficient reporting
This commit is contained in:
Markus Schirp 2018-11-19 12:44:50 +00:00 committed by GitHub
commit 1047e0e660
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,48 @@
defaults: &defaults
working_directory: ~/mutant
steps:
- checkout
- run: bundle install
- run: bundle exec rake ci
docker:
- image: circleci/ruby:2.5.3
version: 2
jobs:
ruby_2_5:
unit_specs:
<<: *defaults
docker:
- image: circleci/ruby:2.5.3
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/unit
integration_rspec:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/integration -e rspec
integration_mutation_generation:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/integration -e 'generation'
metrics:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rake metrics:rubocop
- run: bundle exec rake metrics:reek
- run: bundle exec rake metrics:flay
- run: bundle exec rake metrics:flog
mutant:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rake metrics:mutant
workflows:
version: 2
test:
jobs:
- ruby_2_5
- unit_specs
- integration_rspec
- integration_mutation_generation
- metrics
- mutant