File tree 2 files changed +56
-0
lines changed
2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,13 @@ steps:
63
63
args : ['./scripts/run-build.sh', 'posenet']
64
64
waitFor : ['diff']
65
65
66
+ # Pose Detection.
67
+ - name : ' gcr.io/cloud-builders/gcloud'
68
+ entrypoint : ' bash'
69
+ id : ' pose-detection'
70
+ args : ['./scripts/run-build.sh', 'pose-detection']
71
+ waitFor : ['diff']
72
+
66
73
# Speech commands.
67
74
- name : ' gcr.io/cloud-builders/gcloud'
68
75
entrypoint : ' bash'
Original file line number Diff line number Diff line change
1
+
2
+ steps :
3
+
4
+ # Install common dependencies.
5
+ - name : ' node:10'
6
+ id : ' yarn-common'
7
+ entrypoint : ' yarn'
8
+ args : ['install']
9
+
10
+ # Install pose-detection dependencies.
11
+ - name : ' node:10'
12
+ dir : ' pose-detection'
13
+ entrypoint : ' yarn'
14
+ id : ' yarn'
15
+ args : ['install']
16
+ waitFor : ['yarn-common']
17
+
18
+ # Lint.
19
+ - name : ' node:10'
20
+ dir : ' pose-detection'
21
+ entrypoint : ' yarn'
22
+ id : ' lint'
23
+ args : ['lint']
24
+ waitFor : ['yarn']
25
+
26
+ # Build.
27
+ - name : ' node:10'
28
+ dir : ' pose-detection'
29
+ entrypoint : ' yarn'
30
+ id : ' build'
31
+ args : ['build']
32
+ waitFor : ['yarn']
33
+
34
+ # Run tests.
35
+ - name : ' node:10'
36
+ dir : ' pose-detection'
37
+ entrypoint : ' yarn'
38
+ id : ' test'
39
+ args : ['test']
40
+ waitFor : ['yarn']
41
+
42
+ # General configuration
43
+ timeout : 1800s
44
+ logsBucket : ' gs://tfjs-build-logs'
45
+ substitutions :
46
+ _NIGHTLY : ' '
47
+ options :
48
+ logStreamingOption : ' STREAM_ON'
49
+ substitution_option : ' ALLOW_LOOSE'
You can’t perform that action at this time.
0 commit comments