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: @@ -6,17 +6,25 @@ services:
variables:
GIT_SUBMODULE_STRATEGY: "recursive"
before_script:
- apk add docker-compose
- docker info
- docker-compose --version
stages:
- test
include:
- template: Code-Quality.gitlab-ci.yml
test:
install:
stage: test
image: ubuntu:18.04
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"
- cp compose/production/traefik/traefik.toml.template compose/production/traefik/traefik.toml
- docker-compose -f base.yml build

Loading…
Cancel
Save