-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
150 lines (139 loc) · 3.4 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
image: kirbownz/node12-rsync-python-ssh
###### STAGES #################################################################
stages:
- install
- test
- 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:
- rm yarn.lock
- yarn
lint:
<<: *general
stage: test
dependencies:
- install
script:
- yarn lint
mariadb:
<<: *general
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
stage: test
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
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
stage: test
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:
- mkdir ~/.posti
- cp test/mariadb.config.js ~/.posti/config.js
- yarn build
# 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
- ssh ${demo_user}@${demo_host} "${update_demo_command}"
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 [email protected]:kirbo/posti-graphql.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}