forked from tensorflow/tfjs-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudbuild.yml
48 lines (42 loc) · 810 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
45
46
47
48
steps:
# Install common dependencies.
- name: 'node:12'
id: 'yarn-common'
entrypoint: 'yarn'
args: ['install']
# Install tfjs dependencies.
- name: 'node:12'
dir: 'mobilenet'
entrypoint: 'yarn'
id: 'yarn'
args: ['install']
waitFor: ['yarn-common']
# Lint.
- name: 'node:12'
dir: 'mobilenet'
entrypoint: 'yarn'
id: 'lint'
args: ['lint']
waitFor: ['yarn']
# Build.
- name: 'node:12'
dir: 'mobilenet'
entrypoint: 'yarn'
id: 'build'
args: ['build']
waitFor: ['yarn']
# Run tests.
- name: 'node:12'
dir: 'mobilenet'
entrypoint: 'yarn'
id: 'test'
args: ['test']
waitFor: ['yarn']
# General configuration
timeout: 1800s
logsBucket: 'gs://tfjs-build-logs'
substitutions:
_NIGHTLY: ''
options:
logStreamingOption: 'STREAM_ON'
substitution_option: 'ALLOW_LOOSE'