Sha256: 3598ddce492f15dd713dca15bf967d920a6f5602270311ee0f4a978adbc6277d

Contents?: true

Size: 1.06 KB

Versions: 11

Compression:

Stored size: 1.06 KB

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

code_quality:
  image: docker:stable
  variables:
    DOCKER_DRIVER: overlay2
  allow_failure: true
  services:
    - docker:stable-dind
  script:
    - export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
    - docker run
        --env SOURCE_CODE="$PWD"
        --volume "$PWD":/code
        --volume /var/run/docker.sock:/var/run/docker.sock
        "registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
  artifacts:
    paths: [gl-code-quality-report.json]

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
soaspec-0.1.14 .gitlab-ci.yml
soaspec-0.1.13 .gitlab-ci.yml
soaspec-0.1.12 .gitlab-ci.yml
soaspec-0.1.11 .gitlab-ci.yml
soaspec-0.1.10 .gitlab-ci.yml
soaspec-0.1.9 .gitlab-ci.yml
soaspec-0.1.8 .gitlab-ci.yml
soaspec-0.1.7 .gitlab-ci.yml
soaspec-0.1.5 .gitlab-ci.yml
soaspec-0.1.4 .gitlab-ci.yml
soaspec-0.1.3 .gitlab-ci.yml