Sha256: 8941d3c8ec0b0a62ead12a38d75e5dc9f8d06b6b7f0d0d1a1c82e7ef4305b2c6

Contents?: true

Size: 471 Bytes

Versions: 1

Compression:

Stored size: 471 Bytes

Contents

stages:
  - test


variables:
  IMAGE_TAG: $CI_COMMIT_SHORT_SHA

  METAGAME_IMAGE: [put-your-registry-here]
  METAGAME_FOLDER: ./

test-metagame:
  stage: test
  image: docker:latest
  when: always
  services:
    - docker:dind
  before_script:
    - cd $METAGAME_FOLDER
    - apk update && apk add make && apk add docker-compose
  script:
    - docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY
    - make build
    - make db-test-setup
    - make test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubypitaya-2.11.2 ./lib/rubypitaya/app-template/.gitlab-ci.yml