Skip to content

Commit

Permalink
SRCH-2221 Remove Ruby 2.5 from search-gov CircleCI (#724)
Browse files Browse the repository at this point in the history
Also added a nice name display for the matrixed build versions.
  • Loading branch information
jmax-fearless authored May 12, 2021
1 parent efb7b8b commit 3cbd2b0
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,35 +242,40 @@ workflows:
build_and_test:
jobs:
- checkout_code:
name: "checkout code: Ruby << matrix.ruby_version >>"
matrix:
parameters:
ruby_version: ["2.5.5", "2.6.6"]
ruby_version: ["2.6.6"]

- bundle_install:
requires:
- checkout_code
name: "bundle install: Ruby << matrix.ruby_version >>"
matrix:
parameters:
ruby_version: ["2.5.5", "2.6.6"]
ruby_version: ["2.6.6"]

- rspec:
requires:
- bundle_install
name: "rspec: Ruby << matrix.ruby_version >>"
matrix:
parameters:
ruby_version: ["2.5.5", "2.6.6"]
ruby_version: ["2.6.6"]

- cucumber:
requires:
- bundle_install
name: "cucumber: Ruby << matrix.ruby_version >>"
matrix:
parameters:
ruby_version: ["2.5.5", "2.6.6"]
ruby_version: ["2.6.6"]

- report_coverage:
requires:
- rspec
- cucumber
name: "report coverage: Ruby << matrix.ruby_version >>"
matrix:
parameters:
ruby_version: ["2.5.5", "2.6.6"]
ruby_version: ["2.6.6"]

0 comments on commit 3cbd2b0

Please sign in to comment.