forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudbuild_nightly.yml
More file actions
37 lines (32 loc) · 864 Bytes
/
Copy pathcloudbuild_nightly.yml
File metadata and controls
37 lines (32 loc) · 864 Bytes
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
steps:
# Install common dependencies.
- name: 'gcr.io/learnjs-174218/release'
entrypoint: 'yarn'
id: 'yarn-common'
args: ['install']
# Install converter dependencies
- name: 'gcr.io/learnjs-174218/release'
dir: 'tfjs-converter'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']
waitFor: ['yarn-common']
- name: 'gcr.io/learnjs-174218/release'
id: 'create-pips'
entrypoint: 'bash'
args:
- './tfjs-converter/scripts/create_python_pips.sh'
waitFor: ['yarn-common']
# Run python tests.
- name: 'gcr.io/google-appengine/python'
dir: 'tfjs-converter/python'
entrypoint: 'bash'
args: ['./build-pip-package.sh', '--test-nightly', '/tmp/tfjs-pips']
waitFor: ['create-pips']
timeout: 4800s
logsBucket: 'gs://tfjs-build-logs'
substitutions:
_NIGHTLY: ''
options:
logStreamingOption: 'STREAM_ON'
substitution_option: 'ALLOW_LOOSE'