Sha256: 740b160d16b48907c660356d25492ea18f5fa851ae979ad3e3202e2a76a0028b

Contents?: true

Size: 1.06 KB

Versions: 6

Compression:

Stored size: 1.06 KB

Contents

dependency_scanning:
  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 DEP_SCAN_DISABLE_REMOTE_CHECKS="${DEP_SCAN_DISABLE_REMOTE_CHECKS:-false}"
        --volume "$PWD:/code"
        --volume /var/run/docker.sock:/var/run/docker.sock
        "registry.gitlab.com/gitlab-org/security-products/dependency-scanning:$SP_VERSION" /code
  artifacts:
    paths: [gl-dependency-scanning-report.json]

rubocop:
  script:
    - bundle install --binstubs
    - rubocop

test-ruby-2.3.7:
  image: ruby:2.3.7
  script:
    - bundle install --binstubs
    - bundle exec rake test
    - bundle exec rake spec

test-ruby-2.4.4:
  image: ruby:2.4.4
  script:
    - bundle install --binstubs
    - bundle exec rake test
    - bundle exec rake spec

test-ruby-2.5.1:
  image: ruby:2.5.1
  script:
    - bundle install --binstubs
    - bundle exec rake test
    - bundle exec rake spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fog-proxmox-0.5.4 .gitlab-ci.yml
fog-proxmox-0.5.3 .gitlab-ci.yml
fog-proxmox-0.5.2 .gitlab-ci.yml
fog-proxmox-0.5.1 .gitlab-ci.yml
fog-proxmox-0.5.0 .gitlab-ci.yml
fog-proxmox-0.4.0 .gitlab-ci.yml