-
Notifications
You must be signed in to change notification settings - Fork 0
305 lines (295 loc) · 9.04 KB
/
ci.yaml
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
name: CI
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
tags:
- v*
permissions:
id-token: write
contents: write
pull-requests: read
jobs:
test-cli:
runs-on: ubuntu-latest
name: Test CLI
defaults:
run:
working-directory: cli/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Prepare generator
run: cd ../generator && yarn && yarn build && yarn link && cd ../cli
- name: Prepare definition
run: cd ../definition && yarn && yarn link "@recognizebv/sc3000-generator" && yarn build && yarn link && cd ../cli
- name: Install dependencies
run: yarn
- name: Build
run: yarn lint
- name: Link definition
run: yarn link "@recognizebv/sc3000-definition"
- name: Link generator
run: yarn link "@recognizebv/sc3000-generator"
- name: Build
run: yarn build
- name: Test
run: yarn test
test-definition:
runs-on: ubuntu-latest
name: Test Definition
defaults:
run:
working-directory: definition/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Prepare generator
run: cd ../generator && yarn && yarn build && yarn link && cd ../definition
- name: Install dependencies
run: yarn
- name: Link generator
run: yarn link "@recognizebv/sc3000-generator"
- name: Build
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test
test-generator:
runs-on: ubuntu-latest
name: Test Generator
defaults:
run:
working-directory: generator/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Build
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test
publish-generator:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
name: Publish Generator
needs: [test-generator, test-cli, test-definition]
defaults:
run:
working-directory: generator/
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
TAG: ${{ github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Change version to ${{ github.ref_name }}
run: yarn version --new-version ${TAG#v} --no-git-tag-version
- name: Login to registry
run: echo "//registry.yarnpkg.com/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
- name: Publish
run: yarn publish --access public
publish-definition:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
name: Publish Definition
needs: [test-generator, test-cli, test-definition, publish-generator]
defaults:
run:
working-directory: definition/
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
TAG: ${{ github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Upgrade generator
run: yarn upgrade @recognizebv/sc3000-generator
- name: Build
run: yarn build
- name: Change version to ${{ github.ref_name }}
run: yarn version --new-version ${TAG#v} --no-git-tag-version
- name: Login to registry
run: echo "//registry.yarnpkg.com/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
- name: Publish
run: yarn publish --access public
create-release-macos:
runs-on: macos-latest
name: Create release (macOS)
needs: [test-generator, test-cli, test-definition, publish-generator, publish-definition]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
defaults:
run:
working-directory: cli/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Upgrade generator
run: yarn upgrade @recognizebv/sc3000-generator
- name: Link and prepare definition
run: yarn upgrade @recognizebv/sc3000-definition
- name: Write release version
run: |
VERSION=${GITHUB_REF_NAME#v}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build
run: yarn build
- name: Change version to ${{ github.ref_name }}
run: yarn version --new-version ${VERSION} --no-git-tag-version
- name: Pack MacOS
run: npx oclif pack macos && ls dist/
- name: Upload
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: macos
path: cli/dist/macos/
create-release-windows:
runs-on: ubuntu-latest
name: Create release (Windows)
needs: [test-generator, test-cli, test-definition, publish-generator, publish-definition]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
defaults:
run:
working-directory: cli/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Update dependencies
run: sudo apt update
- name: Install software
run: sudo apt install nsis p7zip-full p7zip-rar -y
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Upgrade generator
run: yarn upgrade @recognizebv/sc3000-generator
- name: Link and prepare definition
run: yarn upgrade @recognizebv/sc3000-definition
- name: Write release version
run: |
VERSION=${GITHUB_REF_NAME#v}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build
run: yarn build
- name: Change version to ${{ github.ref_name }}
run: yarn version --new-version ${VERSION} --no-git-tag-version
- name: Pack Windows
run: npx oclif pack win
- name: Upload
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: windows
path: cli/dist/win32
create-release-ubuntu:
runs-on: ubuntu-latest
name: Create release (Ubuntu)
needs: [test-generator, test-cli, test-definition, publish-generator, publish-definition]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
defaults:
run:
working-directory: cli/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Upgrade generator
run: yarn upgrade @recognizebv/sc3000-generator
- name: Link and prepare definition
run: yarn upgrade @recognizebv/sc3000-definition
- name: Write release version
run: |
VERSION=${GITHUB_REF_NAME#v}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Build
run: yarn build
- name: Change version to ${{ github.ref_name }}
run: yarn version --new-version ${VERSION} --no-git-tag-version
- name: Pack Ubuntu
run: npx oclif pack deb && ls dist/
- name: Upload
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: ubuntu
path: cli/dist/deb
create-release:
needs: [create-release-macos, create-release-windows, create-release-ubuntu]
runs-on: ubuntu-latest
name: Create release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download MacOS artifacts
uses: actions/download-artifact@v3
with:
name: macos
path: dist
- name: Download Windows artifacts
uses: actions/download-artifact@v3
with:
name: windows
path: dist
- name: Download Ubuntu artifacts
uses: actions/download-artifact@v3
with:
name: ubuntu
path: dist
- uses: softprops/action-gh-release@v1
with:
prerelease: ${{ contains(github.ref, '-beta') }}
generate_release_notes: true
files: |
dist/*.deb
dist/*.dmg
dist/*.exe
dist/*.pkg