Sha256: c8456e5c04e30e8c0f8a7d719c1e25eb49cf8c0769101138f4cf6a2ef80b9b4f

Contents?: true

Size: 1.64 KB

Versions: 2

Compression:

Stored size: 1.64 KB

Contents

# DO NOT MODIFY - this is managed by Git Reduce in goro
#
---
version: 2
jobs:
  ruby-2.6.1:
    docker:
    - image: circleci/ruby:2.6.1
    working_directory: "~/immutable-struct"
    steps:
    - checkout
    - run: bundle install --full-index
    - run: bundle exec rspec --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
        --format=doc
    - run:
        name: Run Additional CI Steps
        command: if [ -e bin/additional-ci-steps ]; then bin/additional-ci-steps;
          fi
    - run:
        name: Notify Pager Duty
        command: 'bundle exec y-notify #eng-platform'
        when: on_fail
    - store_test_results:
        path: "/tmp/test-results"
  ruby-2.5.3:
    docker:
    - image: circleci/ruby:2.5.3
    working_directory: "~/immutable-struct"
    steps:
    - checkout
    - run: bundle install --full-index
    - run: bundle exec rspec --format RspecJunitFormatter --out /tmp/test-results/rspec.xml
        --format=doc
    - run:
        name: Run Additional CI Steps
        command: if [ -e bin/additional-ci-steps ]; then bin/additional-ci-steps;
          fi
    - run:
        name: Notify Pager Duty
        command: 'bundle exec y-notify #eng-platform'
        when: on_fail
    - store_test_results:
        path: "/tmp/test-results"
workflows:
  version: 2
  on-commit:
    jobs:
    - ruby-2.6.1:
        context: org-global
    - ruby-2.5.3:
        context: org-global
  scheduled:
    triggers:
    - schedule:
        cron: 4 21 * * 1,2,3,4,5
        filters:
          branches:
            only:
            - master
    jobs:
    - ruby-2.6.1:
        context: org-global
    - ruby-2.5.3:
        context: org-global

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
immutable-struct-2.4.1 .circleci/config.yml
immutable-struct-2.4.0 .circleci/config.yml