-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
195 lines (181 loc) · 4.34 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
image: kirbownz/node12-rsync-python-ssh
###### STAGES #################################################################
stages:
- install
- test
- build
- post build
- publish
- deploy
###### TEMPLATES ##############################################################
.general: &general
tags:
- gitlab-org
variables:
GIT_STRATEGY: fetch
variables:
# Docker in Docker variables
DOCKER_HOST: "tcp://docker:2375"
###### JOBS ###################################################################
install:
<<: *general
stage: install
artifacts:
paths:
- node_modules
expire_in: 1 day
script:
- yarn
install production:
<<: *general
stage: install
artifacts:
paths:
- node_modules
expire_in: 1 day
script:
- yarn install --production
lint:
<<: *general
stage: test
dependencies:
- install
script:
- yarn lint
mariadb:
<<: *general
stage: test
variables:
# Configure mysql environment variables (https://hub.docker.com/r/linuxserver/mariadb#parameters)
MYSQL_DATABASE: POSTI
MYSQL_USER: POSTI
MYSQL_PASSWORD: POSTI
services:
- docker:stable-dind
- linuxserver/mariadb
dependencies:
- install
artifacts:
paths:
- coverage
expire_in: 1 month
script:
- mkdir ~/.posti
- cp test/mariadb.config.js ~/.posti/config.js
- yarn test --ci --coverage
postgres:
<<: *general
stage: test
variables:
# Configure mysql environment variables (https://hub.docker.com/_/postgres#environment-variables)
POSTGRES_DB: POSTI
POSTGRES_USER: POSTI
POSTGRES_PASSWORD: POSTI
services:
- docker:stable-dind
- postgres:latest
dependencies:
- install
artifacts:
paths:
- coverage
expire_in: 1 month
script:
- mkdir ~/.posti
- cp test/postgresql.config.js ~/.posti/config.js
- yarn test --ci --coverage
build:
<<: *general
stage: build
dependencies:
- install
artifacts:
paths:
- dist
expire_in: 1 day
script:
- yarn build
test mariadb:
<<: *general
stage: post build
variables:
# Configure mysql environment variables (https://hub.docker.com/r/linuxserver/mariadb#parameters)
MYSQL_DATABASE: POSTI
MYSQL_USER: POSTI
MYSQL_PASSWORD: POSTI
services:
- docker:stable-dind
- linuxserver/mariadb
dependencies:
- install production
- build
script:
- mkdir ~/.posti
- cp test/mariadb.config.js ~/.posti/config.js
- ./dist/posti.js && exit $?
test postgres:
<<: *general
stage: post build
variables:
# Configure mysql environment variables (https://hub.docker.com/_/postgres#environment-variables)
POSTGRES_DB: POSTI
POSTGRES_USER: POSTI
POSTGRES_PASSWORD: POSTI
services:
- docker:stable-dind
- postgres:latest
dependencies:
- install production
- build
script:
- mkdir ~/.posti
- cp test/postgresql.config.js ~/.posti/config.js
- ./dist/posti.js && exit $?
# Run the jobs below only for `release` branch.
publish to npm:
<<: *general
stage: publish
only:
- release
dependencies:
- build
allow_failure: false
script:
- echo "${npmrc}" > ~/.npmrc
- echo "Publish version $(node -p -e "require('./package.json').version")"
- npm publish
update pages:
<<: *general
stage: deploy
only:
- release
dependencies:
- mariadb
script:
- mkdir -p ~/.ssh
- echo "${ssh_key}" > ~/.ssh/id_rsa
- chmod 700 ~/.ssh
- chmod 600 ~/.ssh/id_rsa
- echo "${gitconfig}" > ~/.gitconfig
- ssh-keyscan -t rsa ${demo_host} >> ~/.ssh/known_hosts
- rsync coverage ${demo_user}@${demo_host}:${demo_path} --delete-after -r -v
deploy to github:
<<: *general
stage: deploy
only:
- release
dependencies: []
script:
- mkdir -p ~/.ssh
- echo "${ssh_key}" > ~/.ssh/id_rsa
- chmod 700 ~/.ssh
- chmod 600 ~/.ssh/id_rsa
- echo "${ssh_config}" > ~/.ssh/config
- echo "${gitconfig}" > ~/.gitconfig
- ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
- if [[ $(git remote | grep github) ]]; then git remote remove github; fi
- git remote add github git@github.com:kirbo/posti.git
- export PACKAGE_VERSION=$(node -p -e "require('./package.json').version")
- git push github HEAD:refs/heads/master
- git tag -a v${PACKAGE_VERSION} -m "Version ${PACKAGE_VERSION}"
- git push github v${PACKAGE_VERSION}