Browse Source

test installer

merge-requests/8/head
Steven Foerster 6 years ago
parent
commit
d146c95ecd
  1. 25
      .gitlab-ci.yml

25
.gitlab-ci.yml

@ -9,22 +9,25 @@ variables: @@ -9,22 +9,25 @@ variables:
stages:
- test
include:
- template: Code-Quality.gitlab-ci.yml
#include:
# - template: Code-Quality.gitlab-ci.yml
install:
stage: test
image: ubuntu:18.04
before_script:
- apt-get install -y sudo git
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
#docker_build:
# stage: test
# before_script:
# - apk add docker-compose
# - docker info
# - docker-compose --version
# script:
# - 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