-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
96 lines (80 loc) · 2 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
stages:
- build
- validation
variables:
RUNNER_SCRIPT: /cse/courses/cse331/23su/public/gitlab-ci/scripts/Runner.py
demo-build:
stage: build
script: python3 -c 'print("\n\n\u001b[35mCongrats, you have pushed the section-demo tag!\u001b[39m\n\n")'
only: ["section-demo"]
except: ["branches"]
setup-build:
stage: build
script: $RUNNER_SCRIPT hw-setup build
only: ["hw2-final"]
except: ["branches"]
setup-validation:
stage: validation
script: $RUNNER_SCRIPT hw-setup validation
only: ["hw2-final"]
except: ["branches"]
base-build:
stage: build
script: $RUNNER_SCRIPT hw-base build
only: ["hw3-final"]
except: ["branches"]
base-validation:
stage: validation
script: $RUNNER_SCRIPT hw-base validation
only: ["hw3-final"]
except: ["branches"]
sets-build:
stage: build
script: $RUNNER_SCRIPT hw-sets build
only: ["hw4-final"]
except: ["branches"]
sets-validation:
stage: validation
script: $RUNNER_SCRIPT hw-sets validation
only: ["hw4-final"]
except: ["branches"]
graph-design-build:
stage: build
script: $RUNNER_SCRIPT hw-graph-design build
only: ["hw5-final"]
except: ["branches"]
graph-design-validation:
stage: validation
script: $RUNNER_SCRIPT hw-graph-design validation
only: ["hw5-final"]
except: ["branches"]
graph-build:
stage: build
script: $RUNNER_SCRIPT hw-graph build
only: ["hw6-final"]
except: ["branches"]
graph-validation:
stage: validation
script: $RUNNER_SCRIPT hw-graph validation
only: ["hw6-final"]
except: ["branches"]
pathfinder-build:
stage: build
script: $RUNNER_SCRIPT hw-pathfinder build
only: ["hw7-final"]
except: ["branches"]
pathfinder-validation:
stage: validation
script: $RUNNER_SCRIPT hw-pathfinder validation
only: ["hw7-final"]
except: ["branches"]
tasks-build:
stage: build
script: $RUNNER_SCRIPT hw-tasks build
only: ["hw7-final"]
except: ["branches"]
tasks-validation:
stage: validation
script: $RUNNER_SCRIPT hw-tasks validation
only: ["hw7-final"]
except: ["branches"]