Sha256: bf329dfa3a07fe842b09de84184660980cc4fc614921bb05cd722becafcaafd7

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

version: v1.0
name: Test
agent:
  machine:
    type: e1-standard-2
    os_image: ubuntu1804
blocks:
  - name: Setup
    task:
      jobs:
        - name: "Checkout"
          commands:
            - checkout
            - ls
            - rm -f .rbenv-version .ruby-version
  - name: Spec versions
    task:
      jobs:
        - name: "2.7"
          commands:
            - checkout
            - sem-version ruby 2.7
            - cache restore
            - gem install bundler:2.4.3
            - bundle install
            - cache store
            - bundle exec rspec
        - name: "3.0"
          commands:
            - checkout
            - sem-version ruby 3.0
            - cache restore
            - gem install bundler:2.4.3
            - bundle install
            - cache store
            - bundle exec rspec
        - name: "3.1"
          commands:
            - checkout
            - sem-version ruby 3.1
            - cache restore
            - gem install bundler:2.4.3
            - bundle install
            - cache store
            - bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
epics-2.1.1 .semaphore/semaphore.yml
epics-2.1.0 .semaphore/semaphore.yml