UNPKG

641 BYAMLView Raw
1steps:
2
3# Install common dependencies.
4- name: 'node:10'
5 entrypoint: 'yarn'
6 id: 'yarn-common'
7 args: ['install']
8
9# Install converter dependencies
10- name: 'node:10'
11 dir: 'tfjs-converter'
12 entrypoint: 'yarn'
13 id: 'yarn'
14 args: ['install']
15 waitFor: ['yarn-common']
16
17# Run python tests.
18- name: 'gcr.io/google-appengine/python'
19 dir: 'tfjs-converter/python'
20 entrypoint: 'bash'
21 args: ['./build-pip-package.sh', '--test-nightly', '/tmp/tfjs-pips']
22 waitFor: ['yarn']
23
24timeout: 1800s
25logsBucket: 'gs://tfjs-build-logs'
26substitutions:
27 _NIGHTLY: ''
28options:
29 logStreamingOption: 'STREAM_ON'
30 substitution_option: 'ALLOW_LOOSE'