Sha256: a3eacbddf65a234acf95bd845cdd581efd770f83614ac02b3e86eb562edd0e54

Contents?: true

Size: 735 Bytes

Versions: 9

Compression:

Stored size: 735 Bytes

Contents

stages:
  - behavior_test
  - release

image: ruby:2.4.0

before_script:
  - bundle install --jobs=4 --with development

rspec:
  stage: behavior_test
  script:
    - bundle exec rspec --order rand spec

publish:
  stage: release
  script:
    - echo "---" > ~/.gem/credentials
    - COLON=':' && echo "${COLON}rubygems_api_key${COLON} ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials
    - git config --global user.email "norad.dev@gmail.com"
    - git config --global user.name "Norad Release"
    - git config --global push.default simple
    - chmod 0600 ~/.gem/credentials
    - bundle exec rake build
    - bundle exec rake release:guard_clean
    - gem push `ls ./pkg/norad_spec_runner-*.gem`
    - rm -fr ~/.gem
  only:
    - master

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
norad_spec_runner-0.5.2 .gitlab-ci.yml
norad_spec_runner-0.5.1 .gitlab-ci.yml
norad_spec_runner-0.5.0 .gitlab-ci.yml
norad_spec_runner-0.4.6 .gitlab-ci.yml
norad_spec_runner-0.4.5 .gitlab-ci.yml
norad_spec_runner-0.4.4 .gitlab-ci.yml
norad_spec_runner-0.4.3 .gitlab-ci.yml
norad_spec_runner-0.4.2 .gitlab-ci.yml
norad_spec_runner-0.4.1 .gitlab-ci.yml