forked from cassproject/cass-editor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
169 lines (130 loc) · 3.82 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
variables:
DEV_USERNAME: deployment
T3_USERNAME: deploymentcass
GIT_SUBMODULE_STRATEGY: recursive
image: node:11
cache:
paths:
- node_modules/
stages:
- build
- deploy
### BUILDS
buildDev:
stage: build
only:
- dev
script:
- LAST_TAG=$(git describe --tags --always)
- sed -i "s/VERSION/$LAST_TAG/" public/index.html
- sed -i 's/cass-editor\///g' ./src/App.vue
- sed -i 's/cass-editor\///g' vue.config.js
- sed -i 's/cass-editor//g' vue.config.js
- npm install
- npm run lint
- npm run docs:build
- npm run buildDev
artifacts:
paths:
- ./dist
buildQA:
stage: build
only:
- qa
script:
- LAST_TAG=$(git describe --tags --always)
- sed -i "s/VERSION/$LAST_TAG/" public/index.html
- sed -i 's/cass-editor\///g' src/App.vue
- sed -i 's/cass-editor\///g' vue.config.js
- sed -i 's/cass-editor//g' vue.config.js
- sed -i 's/https:\/\/dev.api.cassproject.org\/api\//https:\/\/qa.api.cassproject.org\/api\//g' ./src/main.js
- sed -i 's/https:\/\/dev.api.cassproject.org\/api\//https:\/\/qa.api.cassproject.org\/api\//g' ./src/App.vue
- npm install
- npm run lint
- npm run docs:build
- npm run build
artifacts:
paths:
- ./dist
buildT3:
stage: build
only:
- t3
script:
- LAST_TAG=$(git describe --tags --always)
- sed -i "s/VERSION/$LAST_TAG/" public/index.html
- sed -i 's/cass-editor\///g' src/App.vue
- sed -i 's/cass-editor\///g' vue.config.js
- sed -i 's/cass-editor//g' vue.config.js
- sed -i 's/https:\/\/dev.api.cassproject.org\/api\//https:\/\/t3.api.cassproject.org\/api\//g' ./src/main.js
- sed -i 's/https:\/\/dev.api.cassproject.org\/api\//https:\/\/t3.api.cassproject.org\/api\//g' ./src/App.vue
- npm install
- npm run lint
- npm run build
artifacts:
paths:
- ./dist
### DEPLOYMENTS
deployDev:
stage: deploy
only:
- dev
environment:
name: dev
url: https://dev.editor.cassproject.org
script:
- apt-get update -y
- apt-get install openssh-client -y
- 'which ssh-agent || apt-get install openssh-client -y'
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$DEV_SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- chmod 600 "$DEV_PRIVATE_KEY"
- ssh-add "$DEV_PRIVATE_KEY" > /dev/null
## Build commands
- ssh -p22 $DEV_USERNAME@$DEV_SERVER_IP "rm -rf /var/www/dev.editor.cassproject.org/*"
- scp -P22 -r dist/* $DEV_USERNAME@$DEV_SERVER_IP:/var/www/dev.editor.cassproject.org/
deployQA:
stage: deploy
only:
- qa
environment:
name: qa
url: https://qa.editor.cassproject.org
script:
- apt-get update -y
- apt-get install openssh-client -y
- 'which ssh-agent || apt-get install openssh-client -y'
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$DEV_SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- chmod 600 "$DEV_PRIVATE_KEY"
- ssh-add "$DEV_PRIVATE_KEY" > /dev/null
## Build commands
- ssh -p22 $DEV_USERNAME@$DEV_SERVER_IP "rm -rf /var/www/qa.editor.cassproject.org/*"
- scp -P22 -r dist/* $DEV_USERNAME@$DEV_SERVER_IP:/var/www/qa.editor.cassproject.org/
deployT3:
stage: deploy
only:
- t3
environment:
name: t3
url: https://t3.editor.cassproject.org
script:
- apt-get update -y
- apt-get install openssh-client -y
- 'which ssh-agent || apt-get install openssh-client -y'
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$T3_SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
- chmod 600 "$T3_PRIVATE_KEY"
- ssh-add "$T3_PRIVATE_KEY" > /dev/null
## Build commands
- ssh -p22 $T3_USERNAME@$T3_SERVER_IP "rm -rf /var/www/t3.editor.cassproject.org/*"
- scp -P22 -r dist/* $T3_USERNAME@$T3_SERVER_IP:/var/www/t3.editor.cassproject.org/