forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudbuild.yml
More file actions
52 lines (46 loc) · 1.07 KB
/
cloudbuild.yml
File metadata and controls
52 lines (46 loc) · 1.07 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
steps:
# Prepare tfjs-node-gpu folder, copy files from tfjs-node.
- name: 'node:10'
dir: 'tfjs-node-gpu'
id: 'prep-gpu'
entrypoint: 'yarn'
args: ['prep-gpu']
# Install common dependencies.
- name: 'node:10'
id: 'yarn-common'
entrypoint: 'yarn'
args: ['install']
waitFor: ['prep-gpu']
# Install tfjs-node dependencies.
- name: 'node:10'
dir: 'tfjs-node-gpu'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']
waitFor: ['yarn-common']
# Unit tests.
- name: 'node:10'
dir: 'tfjs-node-gpu'
entrypoint: 'yarn'
id: 'test'
args: ['test-ci']
waitFor: ['yarn']
# Integration test.
- name: 'node:10'
dir: 'tfjs-node-gpu'
entrypoint: 'yarn'
id: 'test-ts-integration'
args: ['test-ts-integration']
waitFor: ['yarn', 'test']
# CPU / GPU package alignment.
- name: 'node:10'
dir: 'tfjs-node-gpu'
entrypoint: 'yarn'
id: 'ensure-cpu-gpu-packages-align'
args: ['ensure-cpu-gpu-packages-align']
waitFor: ['yarn', 'test']
timeout: 1800s
logsBucket: 'gs://tfjs-build-logs'
options:
logStreamingOption: 'STREAM_ON'
substitution_option: 'ALLOW_LOOSE'