Sha256: 3122d67dbcff76edbb2f77e98c05c60dc6843276b92f5c60bd7c89f163d2c0ec

Contents?: true

Size: 553 Bytes

Versions: 28

Compression:

Stored size: 553 Bytes

Contents

before_script:
  - apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
  - ruby -v
  - which ruby
  - gem install bundler rake --no-ri --no-rdoc
  - bundle install --jobs $(nproc)  "${FLAGS[@]}"

rspec:
  stage: test
  script:
    - bundle exec rake spec
  artifacts:
    paths:
      - coverage/

cucumber:
  stage: test
  script:
    - bundle exec cucumber

pages:
  stage: deploy
  dependencies:
    - rspec
  script:
    - mv coverage/ public/
  artifacts:
    paths:
      - public
    expire_in: 30 days
  only:
    - master

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
soaspec-0.0.66 .gitlab-ci.yml
soaspec-0.0.65 .gitlab-ci.yml
soaspec-0.0.64 .gitlab-ci.yml
soaspec-0.0.63 .gitlab-ci.yml
soaspec-0.0.62 .gitlab-ci.yml
soaspec-0.0.61 .gitlab-ci.yml
soaspec-0.0.60 .gitlab-ci.yml
soaspec-0.0.59 .gitlab-ci.yml