Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
creating or updating the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
fixbot committed Aug 4, 2020
1 parent c585843 commit 5eff866
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
working_directory: "~/fedex"
steps:
- checkout
- 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)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
- run: bundle exec rspec --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
Expand All @@ -33,7 +38,7 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#mops-inb-outb-alerts"
command: bundle exec y-notify "#mops-transportation-alerts"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
Expand All @@ -43,6 +48,11 @@ jobs:
working_directory: "~/fedex"
steps:
- checkout
- 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)"
1>&2 ; exit 1 ; else exit 0 ; fi '
- run: bundle config stitchfix01.jfrog.io $ARTIFACTORY_USER:$ARTIFACTORY_TOKEN
- run: bundle install --full-index
- run: bundle exec rspec --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
Expand All @@ -53,7 +63,7 @@ jobs:
fi
- run:
name: Notify Pager Duty
command: bundle exec y-notify "#mops-inb-outb-alerts"
command: bundle exec y-notify "#mops-transportation-alerts"
when: on_fail
- store_test_results:
path: "/tmp/test-results"
Expand All @@ -68,7 +78,7 @@ workflows:
- ruby-2.6.6
filters:
tags:
only: /^[0-9]+\.[0-9]+\.[0-9]+(\.?(RC|rc)[-\.]?\d*)?$/
only: /^[0-9]+\.[0-9]+\.[0-9]+(\.?(RC|rc)[-\.]?\w*)?$/
branches:
ignore: /.*/
- ruby-2.7.1:
Expand Down

0 comments on commit 5eff866

Please sign in to comment.