-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
93 lines (78 loc) · 2.09 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
language: node_js
node_js: "8.11"
cache: yarn
_production-env: &production-env
ENVIRONMENT: production
RANCHER_CLUSTERID: c-gxsr7
# _staging-env: &staging-env
# ENVIRONMENT: staging
# RANCHER_CLUSTERID: c-rc5kp
_production-job: &production-job
stage: production
name: SERVICE_NAME
script: scripts/deploy.js SERVICE_NAME
install: skip
env:
<<: *production-env
# _staging-job: &staging-job
# stage: staging
# name: SERVICE_NAME
# script: scripts/deploy.js SERVICE_NAME
# install: skip
# env:
# <<: *staging-env
stages:
- name: test
- name: production-started
if: tag =~ /^v\d+\.\d+\.\d+$/
- name: production
if: tag =~ /^v\d+\.\d+\.\d+$/
- name: production-finished
if: tag =~ /^v\d+\.\d+\.\d+$/
# - name: staging-started
# if: tag is present
# - name: staging
# if: tag is present
# - name: staging-finished
# if: tag is present
jobs:
include:
- stage: test
env:
NODE_ENV: test
- stage: production-started
name: Deployment Started
script: npx @base-cms/website-deployment-tool notify-started
install: skip
env:
<<: *production-env
# - stage: staging-started
# name: Deployment Started
# script: npx @base-cms/website-deployment-tool notify-started
# install: skip
# env:
# <<: *staging-env
#############################
# vvv ADD SERVICES HERE vvv #
#############################
- <<: *production-job
name: Web Service
script: scripts/deploy.js web
# - <<: *staging-job
# name: Web Service
# script: scripts/deploy.js web
#############################
# ^^^ ADD SERVICES HERE ^^^ #
#############################
- stage: production-finished
name: Deployment Finished
script: npx @base-cms/website-deployment-tool notify-finished
install: skip
env:
<<: *production-env
# - stage: staging-finished
# name: Deployment Finished
# script: npx @base-cms/website-deployment-tool notify-finished
# install: skip
# env:
# <<: *staging-env