-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml.disabled
53 lines (40 loc) · 1002 Bytes
/
.gitlab-ci.yml.disabled
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
stages:
- test
image: docker:latest
services:
- docker:dind
before_script:
- docker info
- apk update
- apk upgrade
- apk add curl
- apk add --no-cache --upgrade bash
- apk add python3 py3-pip build-base
- pip install docker-compose
- sh -c bash
- apk add --update nodejs npm
- npm install --global yarn
- apk add --update openjdk11
- apk add openssl
- yarn install
- yarn run setup
- yarn run dt:mapping:pipeline
- cd scripts/cert
- chmod +x main.sh
- bash main.sh
- cd ../../
- docker-compose --profile backend --profile test up --wait
- cd specification-tests
- chmod +x ./run.sh
test-admin-access:
stage: test
script:
- echo "Testing admin access..."
- bash run.sh -d . admin-any
# test-lindner-building-owner:
# stage: test
# script:
# - echo "Testing Lindner Group and building owner interaction..."
# - bash run.sh -d . lindner-building
after_script:
- docker-compose --profile test stop -t 0