forked from sebbo2002/ical-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
179 lines (163 loc) · 3.3 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
179 lines (163 loc) · 3.3 KB
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
stages:
- prepare
- test
- publish
prepare:
stage: prepare
tags:
- matt.sebbo.net
- ssh
script:
- yarn install
- tar -czf "node_modules.tar.gz" ./node_modules
artifacts:
paths:
- node_modules.tar.gz
expire_in: 7 day
node_6:
image: node:6
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
except:
- tags
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm install -g grunt-cli
- npm install
- npm run all
node_7:
image: node:7
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
except:
- tags
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm install -g grunt-cli
- npm install
- npm run all
node_8:
image: node:8
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
except:
- tags
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm install -g grunt-cli
- npm install
- npm run all
node_9:
image: node:9
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
except:
- tags
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm install -g grunt-cli
- npm install
- npm run all
node_10:
image: node:10
services:
- docker:dind
stage: test
tags:
- matt.sebbo.net
- docker
except:
- tags
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm install -g grunt-cli
- npm install
- npm run all
publish-test-report:
stage: test
tags:
- matt.sebbo.net
- ssh
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm run test
- rm -rf /var/docker/static/ical-generator/test/*
- mv ./test-result/test/* /var/docker/static/ical-generator/test/
only:
- develop
publish-coverage-report:
stage: test
tags:
- matt.sebbo.net
- ssh
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm run coverage
- rm -rf /var/docker/static/ical-generator/coverage/*
- mv ./test-result/coverage/* /var/docker/static/ical-generator/coverage/
only:
- develop
publish-plato-report:
stage: test
tags:
- matt.sebbo.net
- ssh
script:
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm run visualize
- rm -rf /var/docker/static/ical-generator/plato/*
- mv ./code-visualization/* /var/docker/static/ical-generator/plato/
only:
- develop
sync_github:
stage: publish
tags:
- matt.sebbo.net
- ssh
script:
- git reset --hard
- git checkout $CI_COMMIT_REF_NAME
- git pull
- git push --force "https://${GITHUB_AUTH}@github.com/sebbo2002/ical-generator.git" --all
- git push --force "https://${GITHUB_AUTH}@github.com/sebbo2002/ical-generator.git" --tags
only:
- develop
- master
publish_npm:
stage: publish
tags:
- matt.sebbo.net
- ssh
script:
- npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
- tar -xzf "node_modules.tar.gz" -C .
- rm -f ./node_modules.tar.gz
- npm run build
- npm run bump
- npm publish
only:
- tags