Skip to content

Commit

Permalink
creating or updating the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fixbot committed Oct 18, 2021
1 parent 7b48596 commit cceb714
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# DO NOT MODIFY - this is managed by Git Reduce in goro
# DO NOT MODIFY - this is managed by Git Reduce in goro and generated from build-matrix.json
#
---
version: 2
jobs:
generate-and-push-docs:
docker:
- image: circleci/ruby:3.0.0
- image: cimg/ruby:3.0.2
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -26,7 +26,7 @@ jobs:
docs:push; fi
release:
docker:
- image: circleci/ruby:3.0.0
- image: cimg/ruby:3.0.2
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -41,9 +41,9 @@ jobs:
- run:
name: Build/release gem to artifactory
command: bundle exec rake push_artifactory
ruby-3.0.0-rails-6.1:
ruby-3.0.2-rails-6.1:
docker:
- image: circleci/ruby:3.0.0
- image: cimg/ruby:3.0.2
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -55,7 +55,7 @@ jobs:
- run:
name: Check for Gemfile.lock presence
command: ' if (test -f Gemfile.lock) then echo "Dont commit Gemfile.lock (see
https://github.com/stitchfix/eng-wiki/blob/master/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
https://github.com/stitchfix/eng-wiki/blob/main/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
Expand All @@ -67,13 +67,13 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#eng-runtime-alerts"
command: bundle exec y-notify "eng-runtime-info"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
ruby-2.7.2-rails-6.1:
ruby-2.7.4-rails-6.1:
docker:
- image: circleci/ruby:2.7.2
- image: cimg/ruby:2.7.4
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -85,7 +85,7 @@ jobs:
- run:
name: Check for Gemfile.lock presence
command: ' if (test -f Gemfile.lock) then echo "Dont commit Gemfile.lock (see
https://github.com/stitchfix/eng-wiki/blob/master/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
https://github.com/stitchfix/eng-wiki/blob/main/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
Expand All @@ -97,13 +97,13 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#eng-runtime-alerts"
command: bundle exec y-notify "eng-runtime-info"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
ruby-3.0.0-rails-6.0:
ruby-3.0.2-rails-6.0:
docker:
- image: circleci/ruby:3.0.0
- image: cimg/ruby:3.0.2
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -115,7 +115,7 @@ jobs:
- run:
name: Check for Gemfile.lock presence
command: ' if (test -f Gemfile.lock) then echo "Dont commit Gemfile.lock (see
https://github.com/stitchfix/eng-wiki/blob/master/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
https://github.com/stitchfix/eng-wiki/blob/main/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
Expand All @@ -127,13 +127,13 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#eng-runtime-alerts"
command: bundle exec y-notify "eng-runtime-info"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
ruby-2.7.2-rails-6.0:
ruby-2.7.4-rails-6.0:
docker:
- image: circleci/ruby:2.7.2
- image: cimg/ruby:2.7.4
auth:
username: "$DOCKERHUB_USERNAME"
password: "$DOCKERHUB_PASSWORD"
Expand All @@ -145,7 +145,7 @@ jobs:
- run:
name: Check for Gemfile.lock presence
command: ' if (test -f Gemfile.lock) then echo "Dont commit Gemfile.lock (see
https://github.com/stitchfix/eng-wiki/blob/master/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
https://github.com/stitchfix/eng-wiki/blob/main/architecture-decisions/0009-rubygem-dependencies-will-be-managed-more-explicitly.md)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
Expand All @@ -157,7 +157,7 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#eng-runtime-alerts"
command: bundle exec y-notify "eng-runtime-info"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
Expand All @@ -168,10 +168,10 @@ workflows:
- release:
context: org-global
requires:
- ruby-3.0.0-rails-6.1
- ruby-2.7.2-rails-6.1
- ruby-3.0.0-rails-6.0
- ruby-2.7.2-rails-6.0
- ruby-3.0.2-rails-6.1
- ruby-2.7.4-rails-6.1
- ruby-3.0.2-rails-6.0
- ruby-2.7.4-rails-6.0
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+(\.?(RC|rc)[-\.]?\w*)?$/
Expand All @@ -186,22 +186,22 @@ workflows:
only: /^[0-9]+\.[0-9]+\.[0-9]+(\.?(RC|rc)[-\.]?\w*)?$/
branches:
ignore: /.*/
- ruby-3.0.0-rails-6.1:
- ruby-3.0.2-rails-6.1:
context: org-global
filters:
tags:
only: &1 /.*/
- ruby-2.7.2-rails-6.1:
- ruby-2.7.4-rails-6.1:
context: org-global
filters:
tags:
only: *1
- ruby-3.0.0-rails-6.0:
- ruby-3.0.2-rails-6.0:
context: org-global
filters:
tags:
only: *1
- ruby-2.7.2-rails-6.0:
- ruby-2.7.4-rails-6.0:
context: org-global
filters:
tags:
Expand All @@ -213,13 +213,13 @@ workflows:
filters:
branches:
only:
- master
- main
jobs:
- ruby-3.0.0-rails-6.1:
- ruby-3.0.2-rails-6.1:
context: org-global
- ruby-2.7.2-rails-6.1:
- ruby-2.7.4-rails-6.1:
context: org-global
- ruby-3.0.0-rails-6.0:
- ruby-3.0.2-rails-6.0:
context: org-global
- ruby-2.7.2-rails-6.0:
- ruby-2.7.4-rails-6.0:
context: org-global

0 comments on commit cceb714

Please sign in to comment.