forked from BgeeDB/bgee-unil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
82 lines (76 loc) · 1.4 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
# Define stages
stages:
- install
- test
- build
- analyse
# 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 ..."
- yarn run build
- echo "Build successfull !"
- echo "Creating artifact of build/"
artifacts:
expire_in: 1 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