Sha256: d63aaf16a942111d4c332cada1591a49c37b2fff85a2a1d0bf5f4e2eb0b9d39a

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

version: 2
jobs:
  test:
    working_directory: ~/ruby-leiningen
    docker:
    - image: ruby:2.6.0
    steps:
    - checkout
    - run: ./scripts/ci/steps/test.sh
  prerelease:
    working_directory: ~/ruby-leiningen
    docker:
    - image: ruby:2.6.0
    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: ~/ruby-leiningen
    docker:
    - image: ruby:2.6.0
    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

4 entries across 4 versions & 1 rubygems

Version Path
ruby_leiningen-0.5.0 .circleci/config.yml
ruby_leiningen-0.4.0.pre.1 .circleci/config.yml
ruby_leiningen-0.3.0 .circleci/config.yml
ruby_leiningen-0.2.0.pre.2 .circleci/config.yml