Browse Source

adding to test

merge-requests/8/head
Steven Foerster 6 years ago
parent
commit
6335ac1527
  1. 18
      .gitlab-ci.yml

18
.gitlab-ci.yml

@ -6,17 +6,25 @@ services:
variables: variables:
GIT_SUBMODULE_STRATEGY: "recursive" GIT_SUBMODULE_STRATEGY: "recursive"
before_script: stages:
- apk add docker-compose - test
- docker info
- docker-compose --version
include: include:
- template: Code-Quality.gitlab-ci.yml - template: Code-Quality.gitlab-ci.yml
test: install:
stage: test stage: test
image: ubuntu:18.04
script: script:
- scripts/install.sh
docker_build:
stage: test
script:
- apk add docker-compose
- docker info
- docker-compose --version
- scripts/subinstallers/gen_prod_env.sh "default_password" - scripts/subinstallers/gen_prod_env.sh "default_password"
- cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml
- docker-compose -f base.yml build - docker-compose -f base.yml build

Loading…
Cancel
Save