forked from nrkno/sofie-core
-
Notifications
You must be signed in to change notification settings - Fork 4
481 lines (457 loc) · 15 KB
/
node.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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
name: Node CI
on:
push:
branches:
- "**"
tags:
- "v**"
pull_request:
workflow_dispatch:
env:
# set only if you want to override the @sofie-automation scope
PACKAGE_SCOPE_OVERRIDE: "@tv2media"
jobs:
lint-core:
name: Typecheck and Lint Core
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- uses: ./.github/actions/setup-meteor
- name: restore node_modules
uses: actions/cache@v2
with:
path: |
meteor/node_modules
key: ${{ runner.os }}-${{ hashFiles('meteor/yarn.lock') }}-${{ hashFiles('meteor/.meteor/release') }}
- name: Prepare Environment
run: |
yarn
yarn build:packages
env:
CI: true
- name: Run typecheck and linter
run: |
cd meteor
meteor npm run ci:lint
env:
CI: true
test-core:
name: Test Core
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- uses: ./.github/actions/setup-meteor
- name: restore node_modules
uses: actions/cache@v2
with:
path: |
meteor/node_modules
key: ${{ runner.os }}-${{ hashFiles('meteor/yarn.lock') }}-${{ hashFiles('meteor/.meteor/release') }}
- name: Prepare Environment
run: |
yarn
yarn build:packages
env:
CI: true
- name: Run Tests
run: |
cd meteor
meteor yarn unitci
env:
CI: true
- name: Send coverage
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
# name: codecov-umbrella
build-core:
# TODO - should this be dependant on tests or something passing if we are on a tag?
name: Build Core and publish docker image
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Get the Docker tag
id: docker-tag
uses: yuya-takeyama/docker-tag-from-github-ref-action@2b0614b1338c8f19dd9d3ea433ca9bc0cc7057ba
with:
remove-version-tag-prefix: false
- name: Determine images to publish
id: image-tags
run: |
IMAGES=
DOCKER_TAG=${{ steps.docker-tag.outputs.tag }}
# check if a release branch, or master, or a tag
if [[ $DOCKER_TAG =~ ^release([0-9]+)$ || $DOCKER_TAG == "latest" || "${{ github.ref }}" == refs/tags/* ]]
then
# If we have a dockerhub image name, then setup to publish there
if [ -z "${{ secrets.DOCKERHUB_IMAGE_PREFIX }}" ]
then
DOCKERHUB_PUBLISH="0"
else
DOCKERHUB_PUBLISH="1"
IMAGES="${{ secrets.DOCKERHUB_IMAGE_PREFIX }}server-core:$DOCKER_TAG"$'\n'$IMAGES
fi
# debug output
echo dockerhub-publish $DOCKERHUB_PUBLISH
echo images $IMAGES
echo ::set-output name=images::"$IMAGES"
echo ::set-output name=dockerhub-publish::"$DOCKERHUB_PUBLISH"
else
echo "Skipping docker build"
fi
- name: Use Node.js
uses: actions/setup-node@v2
if: ${{ steps.image-tags.outputs.images }}
with:
node-version-file: ".node-version"
- uses: ./.github/actions/setup-meteor
if: ${{ steps.image-tags.outputs.images }}
- name: Prepare Environment
if: ${{ steps.image-tags.outputs.images }}
run: |
yarn install
- name: Build libs
if: ${{ steps.image-tags.outputs.images }}
run: |
yarn build:packages
- name: Persist Built Version information
if: ${{ steps.image-tags.outputs.images }}
run: |
cd meteor
yarn inject-git-hash
- name: Meteor Build
if: ${{ steps.image-tags.outputs.images }}
run: |
cd meteor
NODE_OPTIONS="--max-old-space-size=4096" METEOR_DEBUG_BUILD=1 meteor build --allow-superuser --directory .
- name: Meteor Bundle NPM Build
if: ${{ steps.image-tags.outputs.images }}
run: |
cd meteor/bundle/programs/server
meteor npm install
- name: Set up Docker Buildx
if: ${{ steps.image-tags.outputs.images }}
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
if: steps.image-tags.outputs.images && steps.image-tags.outputs.dockerhub-publish == '1'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# TODO - do we want this?
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v1
# with:
# registry: ghcr.io
# username: ${{ github.repository_owner }}
# password: ${{ secrets.CR_PAT }}
- name: Build and push
uses: docker/build-push-action@v2
if: ${{ steps.image-tags.outputs.images }}
with:
context: .
file: ./meteor/Dockerfile.circle
push: true
tags: ${{ steps.image-tags.outputs.images }}
build-gateways:
# TODO - should this be dependant on tests or something passing if we are on a tag?
name: Build gateways
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
gateway-name: [playout-gateway, mos-gateway]
steps:
- uses: actions/checkout@v2
- name: Get the Docker tag
id: docker-tag
uses: yuya-takeyama/docker-tag-from-github-ref-action@2b0614b1338c8f19dd9d3ea433ca9bc0cc7057ba
with:
remove-version-tag-prefix: false
- name: Determine images to publish
id: image-tags
# TODO - image needs changing...
run: |
IMAGES=
DOCKER_TAG=${{ steps.docker-tag.outputs.tag }}
# check if a release branch, or master, or a tag
if [[ $DOCKER_TAG =~ ^release([0-9]+)$ || $DOCKER_TAG == "latest" || "${{ github.ref }}" == refs/tags/* ]]
then
# If we have a dockerhub image name, then setup to publish there
if [ -z "${{ secrets.DOCKERHUB_IMAGE_PREFIX }}" ]
then
DOCKERHUB_PUBLISH="0"
else
DOCKERHUB_PUBLISH="1"
IMAGES="${{ secrets.DOCKERHUB_IMAGE_PREFIX }}${{ matrix.gateway-name }}:$DOCKER_TAG"$'\n'$IMAGES
fi
# debug output
echo dockerhub-publish $DOCKERHUB_PUBLISH
echo images $IMAGES
echo ::set-output name=images::"$IMAGES"
echo ::set-output name=dockerhub-publish::"$DOCKERHUB_PUBLISH"
else
echo "Skipping docker build"
fi
- name: Use Node.js
uses: actions/setup-node@v2
if: ${{ steps.image-tags.outputs.images }}
with:
node-version-file: ".node-version"
- name: Build
if: ${{ steps.image-tags.outputs.images }}
run: |
cd packages
yarn install
yarn lerna run --scope \*\*/${{ matrix.gateway-name }} --include-dependencies --stream build
yarn install --prod --ignore-scripts
- name: Set up Docker Buildx
if: ${{ steps.image-tags.outputs.images }}
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
if: steps.image-tags.outputs.images && steps.image-tags.outputs.dockerhub-publish == '1'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# TODO - do we want this?
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v1
# with:
# registry: ghcr.io
# username: ${{ github.repository_owner }}
# password: ${{ secrets.CR_PAT }}
- name: Build and push
uses: docker/build-push-action@v2
if: ${{ steps.image-tags.outputs.images }}
with:
context: ./packages
file: ./packages/${{ matrix.gateway-name }}/Dockerfile.circle
push: true
tags: ${{ steps.image-tags.outputs.images }}
lint-packages:
name: Lint Package
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
package-name:
- blueprints-integration
- server-core-integration
- playout-gateway
- mos-gateway
- corelib
- shared-lib
- job-worker
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- name: Prepare Environment
run: |
cd packages
yarn install
yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
env:
CI: true
- name: Run typecheck and linter
run: |
cd packages/${{ matrix.package-name }}
yarn lint
env:
CI: true
test-packages:
name: Test Package
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
package-name:
- blueprints-integration
- server-core-integration
- shared-lib
node-version: [14.x, 16.x]
include:
# include additional configs, to run certain packages only for a certain version of node
- node-version: 14.x
package-name: corelib
send-coverage: true
- node-version: 14.x
package-name: job-worker
send-coverage: true
# No tests for the gateways yet
# - node-version: 12.x
# package-name: playout-gateway
# - node-version: 12.x
# package-name: mos-gateway
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Prepare Environment
run: |
cd packages
yarn install
yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
env:
CI: true
- name: Run tests
run: |
cd packages/${{ matrix.package-name }}
yarn unit
env:
CI: true
- name: Send coverage
if: matrix.node-version == '16.x' || matrix.send-coverage == true
uses: codecov/codecov-action@v2
with:
fail_ci_if_error: false
# name: codecov-umbrella
publish-docs:
name: Publish Docs
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- name: Prepare Environment
run: |
cd packages
yarn install
yarn build
env:
CI: true
- name: Run docusaurus
run: |
cd packages/documentation
yarn docs:build
env:
CI: true
- name: Run typedoc
run: |
cd packages
yarn docs:typedoc
cp docs documentation/build/typedoc -R
env:
CI: true
- name: Publish
if: github.ref == 'refs/heads/master' # always publish for just the master branch
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/documentation/build
release-libs:
name: Release Lib
runs-on: ubuntu-latest
timeout-minutes: 15
# only run for tags or manual triggers
if: contains(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
needs:
- test-packages
# core must be published first
- build-core
strategy:
fail-fast: false
matrix:
package-name:
- blueprints-integration
- server-core-integration
- shared-lib
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- name: Prepare Environment # have to run this first to make sure the semver lib is available
run: |
cd packages
yarn install
env:
CI: true
- name: Check release is desired
id: do-publish
run: |
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
echo "No Token"
else
yarn --ignore-scripts
cd packages/${{ matrix.package-name }}
PACKAGE_NAME=$(yarn info -s . name)
[[ -n "$PACKAGE_SCOPE_OVERRIDE" ]] && PACKAGE_NAME=${PACKAGE_NAME/@sofie-automation/"$PACKAGE_SCOPE_OVERRIDE"}
PUBLISHED_VERSION=$(yarn info -s $PACKAGE_NAME version)
THIS_VERSION=$(node -p "require('./package.json').version")
NPM_TAG=$(node ../../scripts/determine-npm-tag.js $PUBLISHED_VERSION $THIS_VERSION)
echo "Publishing $NPM_TAG"
echo ::set-output name=tag::"$NPM_TAG"
fi
- name: Build
if: ${{ steps.do-publish.outputs.tag }}
run: |
cd packages
yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
env:
CI: true
- name: Modify dependencies to use npm packages
run: node scripts/prepublish.js $PACKAGE_SCOPE_OVERRIDE
- name: Publish to NPM
if: ${{ steps.do-publish.outputs.tag }}
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
cd packages/${{ matrix.package-name }}
NEW_VERSION=$(node -p "require('./package.json').version")
yarn publish --access=public --new-version=$NEW_VERSION --network-timeout 100000 --tag ${{ steps.do-publish.outputs.tag }}
env:
CI: true
check-for-multiple-library-versions:
name: Check for multiple library versions
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".node-version"
- uses: ./.github/actions/setup-meteor
- name: restore node_modules
uses: actions/cache@v2
with:
path: |
meteor/node_modules
key: ${{ runner.os }}-${{ hashFiles('meteor/yarn.lock') }}-${{ hashFiles('meteor/.meteor/release') }}
- name: Prepare Environment
run: |
yarn
env:
CI: true
- name: Run check
run: |
node scripts/checkForMultipleVersions.mjs
env:
CI: true