강동현
Builds for 1 pipeline failed in 11 minutes 18 seconds

gitlab-ci 수정

1 -image: node:14-alpine
2 -
3 stages: 1 stages:
4 - test 2 - test
5 - build 3 - build
6 4
7 Test Server: 5 Test Server:
8 stage: test 6 stage: test
7 + image: node:14-alpine
9 script: 8 script:
10 - cd common 9 - cd common
11 - yarn install 10 - yarn install
...@@ -16,5 +15,6 @@ Test Server: ...@@ -16,5 +15,6 @@ Test Server:
16 15
17 Build: 16 Build:
18 stage: build 17 stage: build
18 + image: tmaier/docker-compose:latest
19 script: 19 script:
20 - HOST=2020105578.oss2021.tk SSL_CERT=/etc/letsencrypt/live/2020105578.oss2021.tk/cert.pem SSL_KEY=/etc/letsencrypt/live/2020105578.oss2021.tk/privkey.pem SSL_CA=/etc/letsencrypt/live/2020105578.oss2021.tk/fullchain.pem docker-compose build --no-cache 20 - HOST=2020105578.oss2021.tk SSL_CERT=/etc/letsencrypt/live/2020105578.oss2021.tk/cert.pem SSL_KEY=/etc/letsencrypt/live/2020105578.oss2021.tk/privkey.pem SSL_CA=/etc/letsencrypt/live/2020105578.oss2021.tk/fullchain.pem docker-compose build --no-cache
......