-
Notifications
You must be signed in to change notification settings - Fork 2k
54 lines (50 loc) · 1.4 KB
/
tfjs-ci.yml
File metadata and controls
54 lines (50 loc) · 1.4 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
name: TFJS Continuous Integration
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: bazel-contrib/setup-bazel@0.14.0
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}-cpu
# Share repository cache between workflows.
repository-cache: true
- uses: actions/checkout@v4
- name: Test TFJS CPU
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- run: npm i -g yarn
- run: yarn install
- run: yarn test-cpu
test-gpu-mac:
runs-on: macos-latest-xlarge # consumer gpu
steps:
- uses: bazel-contrib/setup-bazel@0.14.0
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}-gpu-mac
# Share repository cache between workflows.
repository-cache: true
- uses: actions/checkout@v4
- name: Test TFJS GPU
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- run: npm i -g yarn
- run: yarn install
- run: yarn test-gpu