-
Notifications
You must be signed in to change notification settings - Fork 15
/
.gitlab-ci.yml
50 lines (46 loc) · 928 Bytes
/
.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
stages:
- deploy
deploy_research_test:
stage: deploy
script:
- docker-compose up -d --build
environment:
name: research test
url: https://vitals-research.cs.washington.edu/
tags:
- lab-docker-test
only:
- branches
gitdeploy_instr_test:
stage: deploy
script:
- docker-compose up -d --build
environment:
name: insr test
url: https://insr-test-research.cs.washington.edu/
tags:
- lab-instr-docker-test
only:
- branches
gitdeploy_admin_test:
stage: deploy
script:
- docker-compose up -d --build
environment:
name: admin test
url: https://admin-test-research.cs.washington.edu/
tags:
- lab-admin-docker-test
only:
- branches
deploy_research_prod:
stage: deploy
script:
- docker-compose up -d --build
environment:
name: research prod
url: https://vitals.cs.washington.edu/
tags:
- lab-docker-prod
only:
- tags