Sha256: 5792c922633ede7a191d84fddc24d5c7c7800b5ff7add6f498ed14a06fa4f4af

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

version: 2
jobs:
  test:
    working_directory: ~/rake-dependencies
    docker:
    - image: ruby:2.3.8
    steps:
    - checkout
    - run: ./scripts/ci/steps/test.sh
  prerelease:
    working_directory: ~/rake-dependencies
    docker:
    - image: ruby:2.3.8
    steps:
    - checkout
    - run: ./scripts/ci/common/install-git-crypt.sh
    - run: ./scripts/ci/common/install-gpg-key.sh
    - run: ./scripts/ci/common/configure-git.sh
    - run: ./scripts/ci/common/configure-rubygems.sh
    - run: ./scripts/ci/steps/prerelease.sh
  release:
    working_directory: ~/rake-dependencies
    docker:
    - image: ruby:2.3.8
    steps:
    - checkout
    - run: ./scripts/ci/common/install-git-crypt.sh
    - run: ./scripts/ci/common/install-gpg-key.sh
    - run: ./scripts/ci/common/configure-git.sh
    - run: ./scripts/ci/common/configure-rubygems.sh
    - run: ./scripts/ci/steps/release.sh

workflows:
  version: 2
  pipeline:
    jobs:
    - test
    - prerelease:
        requires:
        - test
        filters:
          branches:
            only: master
    - hold:
        type: approval
        requires:
        - prerelease
        filters:
          branches:
            only: master
    - release:
        requires:
        - hold
        filters:
          branches:
            only: master

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rake_dependencies-0.23.0 .circleci/config.yml
rake_dependencies-0.22.0.pre.pre.2 .circleci/config.yml