.circleci/config.yml in legion-settings-0.1.0 vs .circleci/config.yml in legion-settings-0.1.1

- old
+ new

@@ -1,6 +1,6 @@ -version: 2 # use CircleCI 2.0 +version: 2.1 # use CircleCI 2.0 jobs: "rubocop": docker: - image: circleci/ruby:2.4-node steps: @@ -9,11 +9,11 @@ - run: name: Run Rubocop command: rubocop - store_test_results: path: test_results - "ruby-2.0": + "ruby-two-zero": docker: - image: circleci/ruby:2.0 steps: - checkout - run: @@ -23,11 +23,11 @@ name: Run RSpec command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.1": + "ruby-two-one": docker: - image: circleci/ruby:2.1 steps: - checkout - run: @@ -37,11 +37,11 @@ name: Run RSpec command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.2": + "ruby-two-two": docker: - image: circleci/ruby:2.2 steps: - checkout - run: @@ -52,11 +52,11 @@ command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.3": + "ruby-two-three": docker: - image: circleci/ruby:2.3 steps: - checkout - run: @@ -67,11 +67,11 @@ command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.4": + "ruby-two-four": docker: - image: circleci/ruby:2.4-node steps: - checkout - run: @@ -81,11 +81,11 @@ name: Run RSpec command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.5": + "ruby-two-five": docker: - image: circleci/ruby:2.5-node steps: - checkout - run: @@ -95,11 +95,11 @@ name: Run RSpec command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "ruby-2.6": + "ruby-two-six": docker: - image: circleci/ruby:2.6-node steps: - checkout - run: @@ -109,11 +109,11 @@ name: Run RSpec command: bundle exec rspec --format progress --format RspecJunitFormatter -o test-results/rspec/results.xml when: always - store_test_results: path: test-results - "jruby-9.2": + "jruby-nine-two": docker: - image: circleci/jruby:9.2 steps: - checkout - run: @@ -129,39 +129,39 @@ workflows: version: 2 cop_rake_deploy: jobs: - rubocop - # - ruby-2.2: + # - ruby-two-two: # requires: - # - ruby-2.4 + # - ruby-two-four # filters: # branches: # only: /\bdevelop\b|\bmaster\b/ - - ruby-2.3: + - ruby-two-three: requires: - - ruby-2.4 + - ruby-two-four filters: branches: only: /\bdevelop\b|\bmaster\b/ - - ruby-2.4: + - ruby-two-four: requires: - rubocop - - ruby-2.5: + - ruby-two-five: requires: - - ruby-2.4 + - ruby-two-four filters: branches: only: /\bdevelop\b|\bmaster\b/ - - ruby-2.6: + - ruby-two-six: requires: - - ruby-2.4 + - ruby-two-four filters: branches: only: /\bdevelop\b|\bmaster\b/ -# - jruby-9.2: +# - jruby-nine-two: # requires: -# - ruby-2.2 -# - ruby-2.3 -# - ruby-2.4 -# - ruby-2.5 -# - ruby-2.6 +# - ruby-two-two +# - ruby-two-three +# - ruby-two-four +# - ruby-two-five +# - ruby-two-six \ No newline at end of file