Sha256: c204c4292ec1636a3d8a7b9c410a0335fabe384298ac46802e79c22b33607f44

Contents?: true

Size: 804 Bytes

Versions: 2

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.6:
  image: ruby:2.6
  <<: *test_definition

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

test:2.4:
  image: ruby:2.4
  <<: *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

2 entries across 2 versions & 1 rubygems

Version Path
gitlab-labkit-0.13.2 .gitlab-ci.yml
gitlab-labkit-0.13.1 .gitlab-ci.yml