-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
77 lines (69 loc) · 1.14 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
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
script:
- make test
build:
stage: build
artifacts:
paths:
- bin
expire_in: 1 month
only:
- master
script:
- make build pack
deploy_dev:
stage: deploy_dev
dependencies:
- build
script:
- make deploy
environment:
name: DEV
only:
- master
variables:
ENV: gitlab-dev
ECHO_MESSAGE: dev-musketeers-lambda-go-serverless
AWS_REGION: ap-southeast-2
deploy_qa:
stage: deploy_qa
dependencies:
- build
script:
- make deploy
environment:
name: QA
only:
- master
variables:
ENV: gitlab-qa
ECHO_MESSAGE: qa-musketeers-lambda-go-sls
AWS_REGION: ap-southeast-2
deploy_prod:
stage: deploy_prod
when: manual
dependencies:
- build
script:
- make deploy
environment:
name: PROD
only:
- master
variables:
ENV: gitlab-prod
ECHO_MESSAGE: prod-musketeers-lambda-go-sls
AWS_REGION: ap-southeast-2