-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
64 lines (56 loc) · 1.51 KB
/
.gitlab-ci.yml
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
54
55
56
57
58
59
60
61
62
63
64
image: docker:18.09.9
services:
- docker:18.09.9-dind
stages:
- build
- package
- deploy
variables:
APP_VERSION: v1.4
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
# Cache downloaded dependencies and plugins between builds.
# To keep cache across branches add 'key: "$CI_JOB_NAME"'
cache:
paths:
- .m2/repository
- back/target
- .npm
build:back:
image: maven:3.3.9-jdk-8
stage: build
script:
- cd back
- mvn package $MAVEN_CLI_OPTS -Pprod -DskipTests
artifacts:
paths:
- back/target
build:front:
image: node:12-alpine
stage: build
script:
- cd front
- npm ci
- npm run build:prod2
artifacts:
paths:
- front/build
package:back:
stage: package
script:
- cd back
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE/iseplive-back:$APP_VERSION -t $CI_REGISTRY_IMAGE/iseplive-back:latest .
- docker push $CI_REGISTRY_IMAGE/iseplive-back:$APP_VERSION
- docker push $CI_REGISTRY_IMAGE/iseplive-back:latest
dependencies:
- build:back
package:front:
stage: package
script:
- cd front
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE/iseplive-front:$APP_VERSION -t $CI_REGISTRY_IMAGE/iseplive-front:latest .
- docker push $CI_REGISTRY_IMAGE/iseplive-front:$APP_VERSION
- docker push $CI_REGISTRY_IMAGE/iseplive-front:latest
dependencies:
- build:front