-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
42 lines (36 loc) · 1.26 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
image: felixlusseau/dev-env
stages: # List of stages for jobs, and their order of execution
- build
- benchs
- benchs_mips
- test
- test_mips
build: # This job runs in the build stage, which runs first.
stage: build
script:
- cd /builds/flusseau/projet-compilation-2022/
- make
benchs: # This job runs in the test stage.
stage: benchs # It only starts when the job in the build stage completes successfully.
allow_failure: true
script:
- cd /builds/flusseau/projet-compilation-2022/
- make benchs
benchs_mips: # This job runs in the test stage.
stage: benchs_mips # It only starts when the job in the build stage completes successfully.
allow_failure: true
script:
- cd /builds/flusseau/projet-compilation-2022/
- make benchs_mips
test: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
allow_failure: true
script:
- cd /builds/flusseau/projet-compilation-2022/
- make test
test_mips: # This job runs in the test stage.
stage: test_mips # It only starts when the job in the build stage completes successfully.
allow_failure: true
script:
- cd /builds/flusseau/projet-compilation-2022/
- make test_mips