-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
80 lines (71 loc) · 1.38 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
variables:
# Project Deployemnt specific variables
LF_NAME: gonotify
LF_SUBDOMAIN: gonotify
stages:
- build-local
- build
- deploy
build-go:
image:
name: golang
stage: build-local
variables:
GOPATH: $CI_PROJECT_DIR/.go
cache:
key: go-deps
paths:
- .go/pkg/mod/
artifacts:
when: on_success
expire_in: 3d
paths:
- build/
- config/
script:
- cp $PROD_CONF config/config.yml
- GOOS=linux go build -ldflags "-linkmode external -extldflags -static" -o build/gonotify ./cmd/gonotify
build:
extends: .build
only:
- master
- dev
needs:
- job: build-go
artifacts: true
deploy-prod:
extends: .deploy
variables:
LF_ADDITIONAL_HOST: "gonotify.xyz"
only:
- master
environment:
name: production
url: https://$CI_ENVIRONMENT_SLUG.$LF_SUBDOMAIN.$KUBE_INGRESS_BASE_DOMAIN
on_stop: stop-prod
stop-prod:
extends: .stop_deploy
only:
- master
environment:
name: production
deploy-stg:
extends: .deploy
variables:
LF_ADDITIONAL_HOST: "dev.gonotify.xyz"
only:
- dev
environment:
name: staging
url: https://$CI_ENVIRONMENT_SLUG.$LF_SUBDOMAIN.$KUBE_INGRESS_BASE_DOMAIN
on_stop: stop-stg
stop-stg:
extends: .stop_deploy
only:
- dev
environment:
name: staging
include:
- project: 'ops/k8s'
file: 'Build.template.yml'
- '.gitlab/Deploy.ci.yml'