forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloudbuild.yml
44 lines (39 loc) · 884 Bytes
/
cloudbuild.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
steps:
# Install common dependencies.
- name: 'node:10'
id: 'yarn-common'
entrypoint: 'yarn'
args: ['install']
# Install tfjs-node dependencies.
- name: 'node:10'
dir: 'tfjs-node'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']
waitFor: ['yarn-common']
# Unit tests.
- name: 'node:10'
dir: 'tfjs-node'
entrypoint: 'yarn'
id: 'test'
args: ['test-ci']
waitFor: ['yarn']
# Integration test.
- name: 'node:10'
dir: 'tfjs-node'
entrypoint: 'yarn'
id: 'test-ts-integration'
args: ['test-ts-integration']
waitFor: ['yarn', 'test']
# CPU / GPU package alignment.
- name: 'node:10'
dir: 'tfjs-node'
entrypoint: 'yarn'
id: 'ensure-cpu-gpu-packages-align'
args: ['ensure-cpu-gpu-packages-align']
waitFor: ['yarn']
timeout: 1800s
logsBucket: 'gs://tfjs-build-logs'
options:
logStreamingOption: 'STREAM_ON'
substitution_option: 'ALLOW_LOOSE'