-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
60 lines (55 loc) · 1.31 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
image: docker:latest
stages:
- build
- deploy
sonarqube-check:
stage: build
tags:
- kuber
image:
name: sonarsource/sonar-scanner-cli:latest
entrypoint: [""]
variables:
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
script:
- sonar-scanner
allow_failure: true
only:
- dev # or the name of your main branch
- merge_requests
- develop
sonarqube-pr-decoration:
stage: build
script:
- echo sonar.pullrequest.key=$CI_MERGE_REQUEST_IID >> sonar-project.properties
- echo sonar.pullrequest.branch=$CI_MERGE_REQUEST_BRANCH_NAME >> sonar-project.properties
only:
- dev
- merge_requests
tags:
- kuber
Build:
only:
- dev
tags:
- kuber
stage: build
image: ${BUILD_DOCKER_IMAGE}
script:
- docker login -u gitlab-ci-token -p ${CI_BUILD_TOKEN} ${CI_REGISTRY}
- docker build --build-arg VUE_APP_API_URL=${VUE_APP_API_URL} --network=host -t ${DOCKER_REPOSITORY_IMAGE} .
- docker push ${DOCKER_REPOSITORY_IMAGE}
Deploy:
tags:
- kuber
stage: deploy
only:
- dev
image: ${DEPLOY_DOCKER_IMAGE}
script:
- grdp-ctl