Sha256: c9f90bc7ccaeebd48b1d1de855137bb7d7f88fef25599a9f8b5106eca023ca1f

Contents?: true

Size: 532 Bytes

Versions: 3

Compression:

Stored size: 532 Bytes

Contents

stages:
  - build

variables:
  COMPOSE_FILE: .docker/docker-compose.yml

.build_app_template: &build_app_def
  stage: build
  before_script:
    - docker --version
    - docker-compose --version
  script:
    - docker-compose up --build --exit-code-from app
  after_script:
    - docker-compose down

build_app_ruby24:
  <<: *build_app_def
  variables:
    RUBY_VERSION: '2.4'

build_app_ruby25:
  <<: *build_app_def
  variables:
    RUBY_VERSION: '2.5'

build_app_ruby26:
  <<: *build_app_def
  variables:
    RUBY_VERSION: '2.6'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ddr-antivirus-3.0.0 .gitlab-ci.yml
ddr-antivirus-3.0.0.rc1 .gitlab-ci.yml
ddr-antivirus-2.2.0 .gitlab-ci.yml