Sha256: 589f4ac334e6de4f5d38db039bc563b3fb597716377d8e665d9d736b321e6a0c

Contents?: true

Size: 511 Bytes

Versions: 7

Compression:

Stored size: 511 Bytes

Contents

# This file is a template, and might need editing before it works on your project.
# Official docker image.
image: ruby:2.6

stages:
  - test
  - build
  - deploy

test:
  stage: test
  script:
    - bundle install --with test
    - bundle exec rspec

build:
  stage: build
  script:
    - gem build faastruby.gemspec
  only:
    - tags
  except:
    - branches
    - master

push:
  stage: deploy
  when: manual
  script:
    - gem push faastruby-*.gem
  only:
    - tags
  except:
    - branches
    - master

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
faastruby-0.5.30 .gitlab-ci.yml
faastruby-0.5.29 .gitlab-ci.yml
faastruby-0.5.28 .gitlab-ci.yml
faastruby-0.5.27 .gitlab-ci.yml
faastruby-0.5.26 .gitlab-ci.yml
faastruby-0.5.25 .gitlab-ci.yml
faastruby-0.5.24 .gitlab-ci.yml