Sha256: 05bbe484f94a33dd87ac86cb3a86031abe28021a52ef32b8dd3cda40e7501aba

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.2.7 .gitlab-ci.yml
soaspec-0.2.5 .gitlab-ci.yml
soaspec-0.2.4 .gitlab-ci.yml
soaspec-0.2.3 .gitlab-ci.yml
soaspec-0.2.2 .gitlab-ci.yml
soaspec-0.2.1 .gitlab-ci.yml
soaspec-0.2.0 .gitlab-ci.yml
soaspec-0.1.18 .gitlab-ci.yml
soaspec-0.1.17 .gitlab-ci.yml
soaspec-0.1.16 .gitlab-ci.yml
soaspec-0.1.15 .gitlab-ci.yml