-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitlab-ci.yml
109 lines (102 loc) · 2.39 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Define stages
stages:
- install
- test
- build
- analyse
- deploy
variables:
GIT_DEPTH: 0
DOCKER_IMAGE: 'build-univlausanne-bgee'
DOCKER_CONTAINER: 'UnivLausanne-BGEE'
DOCKER_PORT: 35100
# Caching node_modules between jobs
cache:
paths:
- node_modules
# Install
install:
stage: install
image: node:16
script:
- echo "Install the app ..."
- yarn install
- echo "Install successfull !"
only:
- merge_requests
- develop
- master
# Test front Jest
#test-front-jest:
# stage: test
# image: node:16
# script:
# - echo "ls -la :"
# - ls -la
# - echo "Testing the app ..."
# - yarn run test
# - echo "Test successfully!"
# only:
# - merge_requests
# - develop
# - master
# Makes tests visible from gitlab pipelines !
#artifacts:
# when: always
# expire_in: 1 hour
# reports:
# junit:
# - junit.xml
# # Save reports for sonar analysis
# paths:
# - test-report.xml
# - coverage/lcov.info
build:
stage: build
image: node:16
script:
- echo "Building the app ..."
- echo $CI_COMMIT_BRANCH
- yarn run build
- echo "Build successfull !"
- echo "Creating artifact of build/"
artifacts:
expire_in: 4 hour
paths:
- build
only:
- merge_requests
- develop
- master
# Sonar analysis
sonarqube-check:
stage: analyse
image:
name: sonarsource/sonar-scanner-cli:latest
entrypoint: ['']
script:
- sonar-scanner -Dsonar.qualitygate.wait=true
allow_failure: false
only:
- merge_requests
- develop
- master
# deploy branch env
docker-deploy:
image: docker:stable
stage: deploy
script:
- docker -H $DOCKER_HOST ps -f name=$DOCKER_CONTAINER -q | xargs --no-run-if-empty docker container stop
- docker -H $DOCKER_HOST container ls -a -fname=$DOCKER_CONTAINER -q | xargs -r docker container rm
- docker -H $DOCKER_HOST build . -t $DOCKER_IMAGE
- docker -H $DOCKER_HOST run -d -p ${DOCKER_PORT}:80 --name $DOCKER_CONTAINER $DOCKER_IMAGE
needs:
- build
rules:
- if: ($CI_COMMIT_BRANCH =~ /^sprint.*/i && $CI_PIPELINE_SOURCE == 'merge_request_event') || $CI_COMMIT_BRANCH == "develop" || $CI_COMMIT_BRANCH == "master"
when: on_success
# --> comme si on avait if(true)
# Permet de toujours pouvoir lancer le build manuellement si nécessaire
- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
when: manual
allow_failure: true