From 6335ac152789f6a67b3fe1991730b673f987202f Mon Sep 17 00:00:00 2001 From: Steven Foerster Date: Fri, 20 Mar 2020 22:26:56 -0400 Subject: [PATCH] adding to test --- .gitlab-ci.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b40318..a2bcf77 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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