-
-
Notifications
You must be signed in to change notification settings - Fork 510
386 lines (324 loc) · 11.6 KB
/
nodejs.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
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
name: Build binaries
on: [push]
jobs:
linux64:
runs-on: ubuntu-20.04
outputs:
version: ${{ steps.filenames.outputs.longversion }}
do-docker: ${{ steps.upload.outputs.branch }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Cache build sources
uses: actions/cache@v3
with:
path: .cache
key: linux-x64-build-cache
- name: build & package
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn update
yarn zx tools/build/complete.mjs
# manually tar it, to preserve the symlinks
cd electron-output
mv linux-unpacked companion-x64
tar -cvzf companion-x64.tar.gz companion-x64
env:
CI: 1
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
USE_HARD_LINKS: false
- name: Determine files to upload
id: filenames
shell: bash
run: |
VERSION=$(cat ./dist/BUILD)
echo "sourcename=electron-output/companion-x64.tar.gz" >> $GITHUB_OUTPUT
echo "targetname=companion-linux-x64-${VERSION}.tar.gz" >> $GITHUB_OUTPUT
echo "longversion=${VERSION}" >> $GITHUB_OUTPUT
- name: Upload build
id: upload
uses: bitfocus/actions/upload-and-notify@main
with:
long-version: ${{ steps.filenames.outputs.longversion }}
beta-branch: beta
dev-branch: develop
source-filename: ${{ steps.filenames.outputs.sourcename }}
destination-filename: ${{ steps.filenames.outputs.targetname }}
s3-host: ${{ secrets.S3_HOST }}
s3-bucket: ${{ secrets.S3_BUCKET }}/companion
s3-access-key: ${{ secrets.S3_KEY }}
s3-secret-key: ${{ secrets.S3_SECRET }}
api-product: companion
api-target: 'linux-tgz'
api-secret: ${{ secrets.BITFOCUS_API_PROJECT_SECRET }}
linux-arm64:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Cache build sources
uses: actions/cache@v3
with:
path: .cache
key: linux-arm64-build-cache
- name: build & package
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn update
yarn zx tools/build/complete.mjs linux-arm64
# manually tar it, to preserve the symlinks
cd electron-output
mv linux-arm64-unpacked companion-arm64
tar -cvzf companion-arm64.tar.gz companion-arm64
env:
CI: 1
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SKIP_LAUNCH_CHECK: true
USE_HARD_LINKS: false
- name: Determine files to upload
id: filenames
shell: bash
run: |
VERSION=$(cat ./dist/BUILD)
echo "sourcename=electron-output/companion-arm64.tar.gz" >> $GITHUB_OUTPUT
echo "targetname=companion-linux-arm64-${VERSION}.tar.gz" >> $GITHUB_OUTPUT
echo "longversion=${VERSION}" >> $GITHUB_OUTPUT
- name: Upload build
uses: bitfocus/actions/upload-and-notify@main
with:
long-version: ${{ steps.filenames.outputs.longversion }}
beta-branch: beta
dev-branch: develop
source-filename: ${{ steps.filenames.outputs.sourcename }}
destination-filename: ${{ steps.filenames.outputs.targetname }}
s3-host: ${{ secrets.S3_HOST }}
s3-bucket: ${{ secrets.S3_BUCKET }}/companion
s3-access-key: ${{ secrets.S3_KEY }}
s3-secret-key: ${{ secrets.S3_SECRET }}
api-product: companion
api-target: 'linux-arm64-tgz'
api-secret: ${{ secrets.BITFOCUS_API_PROJECT_SECRET }}
osx:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Cache build sources
uses: actions/cache@v3
with:
path: .cache
key: macos-x64-build-cache
- name: build & package
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn update
yarn zx tools/build/complete.mjs
env:
CI: 1
CSC_LINK: ${{ secrets.OSX_CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.OSX_CSC_KEY_PASSWORD }}
APPLEID: ${{ secrets.APPLEID }}
APPLETEAMID: ${{ secrets.APPLETEAMID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
USE_HARD_LINKS: false
- name: Determine files to upload
id: filenames
shell: bash
run: |
VERSION=$(cat ./dist/BUILD)
echo "sourcename=electron-output/companion-mac-x64.dmg" >> $GITHUB_OUTPUT
echo "targetname=companion-mac-x64-${VERSION}.dmg" >> $GITHUB_OUTPUT
echo "longversion=${VERSION}" >> $GITHUB_OUTPUT
- name: Upload build
uses: bitfocus/actions/upload-and-notify@main
with:
long-version: ${{ steps.filenames.outputs.longversion }}
beta-branch: beta
dev-branch: develop
source-filename: ${{ steps.filenames.outputs.sourcename }}
destination-filename: ${{ steps.filenames.outputs.targetname }}
s3-host: ${{ secrets.S3_HOST }}
s3-bucket: ${{ secrets.S3_BUCKET }}/companion
s3-access-key: ${{ secrets.S3_KEY }}
s3-secret-key: ${{ secrets.S3_SECRET }}
api-product: companion
api-target: 'mac-intel'
api-secret: ${{ secrets.BITFOCUS_API_PROJECT_SECRET }}
osx-arm64:
runs-on: macos-11
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Cache build sources
uses: actions/cache@v3
with:
path: .cache
key: macos-arm64-build-cache
- name: yarn update
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
yarn update
env:
CI: 1
- name: build & package
run: |
yarn zx tools/build/complete.mjs darwin-arm64
env:
CI: 1
CSC_LINK: ${{ secrets.OSX_CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.OSX_CSC_KEY_PASSWORD }}
APPLEID: ${{ secrets.APPLEID }}
APPLETEAMID: ${{ secrets.APPLETEAMID }}
APPLEIDPASS: ${{ secrets.APPLEIDPASS }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
USE_HARD_LINKS: false
SKIP_LAUNCH_CHECK: true
- name: Determine files to upload
id: filenames
shell: bash
run: |
VERSION=$(cat ./dist/BUILD)
echo "sourcename=electron-output/companion-mac-arm64.dmg" >> $GITHUB_OUTPUT
echo "targetname=companion-mac-arm64-${VERSION}.dmg" >> $GITHUB_OUTPUT
echo "longversion=${VERSION}" >> $GITHUB_OUTPUT
- name: Upload build
uses: bitfocus/actions/upload-and-notify@main
with:
long-version: ${{ steps.filenames.outputs.longversion }}
beta-branch: beta
dev-branch: develop
source-filename: ${{ steps.filenames.outputs.sourcename }}
destination-filename: ${{ steps.filenames.outputs.targetname }}
s3-host: ${{ secrets.S3_HOST }}
s3-bucket: ${{ secrets.S3_BUCKET }}/companion
s3-access-key: ${{ secrets.S3_KEY }}
s3-secret-key: ${{ secrets.S3_SECRET }}
api-product: companion
api-target: 'mac-arm'
api-secret: ${{ secrets.BITFOCUS_API_PROJECT_SECRET }}
win64:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Cache build sources
uses: actions/cache@v3
with:
path: .cache
key: windows-x64-build-cache
- name: build & package
shell: bash
run: |
# try and avoid timeout errors
yarn config set network-timeout 100000 -g
# This fixes it somehow, and without it we get no logs from any shell scripts which are run
yarn config set script-shell bash
yarn update
# zx needs this to be unset..
yarn config set script-shell ''
yarn zx tools/build/complete.mjs
env:
CI: 1
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
- name: Determine files to upload
id: filenames
shell: bash
run: |
VERSION=$(cat ./dist/BUILD)
echo "sourcename=electron-output/companion-win64.exe" >> $GITHUB_OUTPUT
echo "targetname=companion-win64-${VERSION}.exe" >> $GITHUB_OUTPUT
echo "longversion=${VERSION}" >> $GITHUB_OUTPUT
- name: Upload build
uses: bitfocus/actions/upload-and-notify@main
with:
long-version: ${{ steps.filenames.outputs.longversion }}
beta-branch: beta
dev-branch: develop
source-filename: ${{ steps.filenames.outputs.sourcename }}
destination-filename: ${{ steps.filenames.outputs.targetname }}
s3-host: ${{ secrets.S3_HOST }}
s3-bucket: ${{ secrets.S3_BUCKET }}/companion
s3-access-key: ${{ secrets.S3_KEY }}
s3-secret-key: ${{ secrets.S3_SECRET }}
api-product: companion
api-target: 'win-x64'
api-secret: ${{ secrets.BITFOCUS_API_PROJECT_SECRET }}
docker-image:
runs-on: ubuntu-latest
needs:
- linux64
- linux-arm64
env:
IMAGE_NAME: companion
steps:
- name: Docker meta
if: ${{ needs.linux64.outputs.do-docker }}
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=${{ needs.linux64.outputs.version }}
type=ref,event=tag
type=ref,event=branch
- name: Set up QEMU
if: ${{ steps.meta.outputs.tags }}
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
if: ${{ steps.meta.outputs.tags }}
uses: docker/setup-buildx-action@v2
- name: Login to registry
if: ${{ steps.meta.outputs.tags }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
if: ${{ steps.meta.outputs.tags }}
- name: Build and push
uses: docker/build-push-action@v3
if: ${{ steps.meta.outputs.tags }}
with:
context: .
file: Dockerfile.prebuild
platforms: linux/amd64,linux/arm64/v8
push: true
labels: ${{ steps.meta.outputs.labels }}
tags: '${{ steps.meta.outputs.tags }}'
build-args: |
build_name=${{ needs.linux64.outputs.version }}