-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
82 lines (74 loc) · 1.15 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
image: flemay/musketeers
# overlay2 provides improved performance for dind
variables:
DOCKER_DRIVER: overlay2
services:
- docker:dind
stages:
- test
- build
- deploy_dev
- deploy_qa
- deploy_prod
test:
stage: test
dependencies:
- deps
script:
- make test
build:
stage: build
dependencies:
- deps
artifacts:
paths:
- bin
expire_in: 1 month
only:
- master
script:
- make build pack
variables:
SAM_S3_BUCKET: apac-dev-sam
AWS_DEFAULT_REGION: ap-southeast-2
deploy_dev:
stage: deploy_dev
dependencies:
- build
script:
- make deploy
environment:
name: DEV
only:
- master
variables:
ENV: dev
AWS_DEFAULT_REGION: ap-southeast-2
deploy_qa:
stage: deploy_qa
when: manual
dependencies:
- build
script:
- make deploy
environment:
name: QA
only:
- master
variables:
ENV: qa
AWS_DEFAULT_REGION: ap-southeast-2
deploy_prod:
stage: deploy_prod
when: manual
dependencies:
- build
script:
- make deploy
environment:
name: PROD
only:
- master
variables:
ENV: prod
AWS_DEFAULT_REGION: ap-southeast-2