Sha256: 99a4d0e41b9de5a3ac2b03966c7b4d071fba78fb59b50d7052934c7e3c2f0b43

Contents?: true

Size: 804 Bytes

Versions: 8

Compression:

Stored size: 804 Bytes

Contents

workflow:
  rules:
    # For merge requests, create a pipeline.
    - if: '$CI_MERGE_REQUEST_IID'
    # For `master` branch, create a pipeline (this includes on schedules, pushes, merges, etc.).
    - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
    # For tags, create a pipeline.
    - if: '$CI_COMMIT_TAG'

.test_template: &test_definition
  stage: test
  script:
    - gem install bundler
    - bundle install
    - bundle exec rake verify build install

test:2.7:
  image: ruby:2.7
  <<: *test_definition

test:2.6:
  image: ruby:2.6
  <<: *test_definition

test:2.5:
  image: ruby:2.5
  <<: *test_definition

deploy:
  stage: deploy
  script:
    - tools/deploy-rubygem.sh
  only:
    - tags

release:
  stage: deploy
  script:
    - tools/update-changelog.rb "${CI_COMMIT_TAG}"
  only:
    - tags

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gitlab-labkit-0.16.2 .gitlab-ci.yml
gitlab-labkit-0.16.1 .gitlab-ci.yml
gitlab-labkit-0.16.0 .gitlab-ci.yml
gitlab-labkit-0.15.0 .gitlab-ci.yml
gitlab-labkit-0.14.0 .gitlab-ci.yml
gitlab-labkit-0.13.5 .gitlab-ci.yml
gitlab-labkit-0.13.4 .gitlab-ci.yml
gitlab-labkit-0.13.3 .gitlab-ci.yml