forked from uccser/cs-unplugged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
268 lines (268 loc) · 8.39 KB
/
.travis.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
sudo: required
services:
- docker
language: python
python:
- '3.6'
before_install:
# See https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
install:
- sudo docker --version
- sudo docker-compose --version
jobs:
include:
- stage: test
name: "Load content"
script: ./csu ci load_content
- script: ./csu ci test_general
name: "Run general tests"
- script: ./csu ci test_resources
name: "Run resource tests"
- script: ./csu ci test_management
name: "Run management tests"
- script: ./csu ci test_backwards
name: "Run test suite backwards"
if: type = pull_request
- script: ./csu ci style
name: "Run style checker"
- script: ./csu ci docs
name: "Build documentation"
- stage: develop deploy
name: "Deploy app to Google App Engine"
script: skip
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-app.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy static files to Google Storage Bucket"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-static-files.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Update Google Cloud Platform database"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/update-database.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 1"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-1.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 2"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-2.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 3"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-3.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 4"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-4.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 5"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-5.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 6"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-6.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 7"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-7.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 8"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-8.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 9"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-9.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 10"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-10.sh
skip_cleanup: true
on:
branch: develop
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 11"
deploy:
- provider: script
script: bash ./infrastructure/dev-deploy/deploy-resources-11.sh
skip_cleanup: true
on:
branch: develop
- stage: production deploy
script: skip
name: "Deploy app to Google App Engine"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-app.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy static files to Google Storage Bucket"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-static-files.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Update Google Cloud Platform database"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/update-database.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 1"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-1.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 2"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-2.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 3"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-3.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 4"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-4.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 5"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-5.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 6"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-6.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 7"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-7.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 8"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-8.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 9"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-9.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 10"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-10.sh
skip_cleanup: true
on:
branch: master
- script: skip
name: "Copy resource PDFs to Google Storage Bucket - Part 11"
deploy:
- provider: script
script: bash ./infrastructure/prod-deploy/deploy-resources-11.sh
skip_cleanup: true
on:
branch: master
notifications:
email: false
slack:
rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv
on_success: change
on_failure: change
stages:
- name: test
- name: develop deploy
if: branch = develop
- name: production deploy
if: branch = master