UNPKG

@tensorflow-models/body-pix

Version:

Pretrained BodyPix model in TensorFlow.js

55 lines (48 loc) 1.15 kB
steps: # Install common dependencies. - name: 'node:10' id: 'yarn-common' entrypoint: 'yarn' args: ['install'] # Install tfjs dependencies. - name: 'node:10' dir: 'body-pix' entrypoint: 'yarn' id: 'yarn' args: ['install'] waitFor: ['yarn-common'] # Lint. - name: 'node:10' dir: 'body-pix' entrypoint: 'yarn' id: 'lint' args: ['lint'] waitFor: ['yarn'] # Build. - name: 'node:10' dir: 'body-pix' entrypoint: 'yarn' id: 'build' args: ['build'] waitFor: ['yarn'] # Run tests. - name: 'node:10' dir: 'body-pix' entrypoint: 'yarn' id: 'test' args: ['test-ci'] waitFor: ['yarn'] env: ['BROWSERSTACK_USERNAME=deeplearnjs1'] secretEnv: ['BROWSERSTACK_KEY'] # General configuration secrets: - kmsKeyName: projects/learnjs-174218/locations/global/keyRings/tfjs/cryptoKeys/enc secretEnv: BROWSERSTACK_KEY: CiQAkwyoIW0LcnxymzotLwaH4udVTQFBEN4AEA5CA+a3+yflL2ASPQAD8BdZnGARf78MhH5T9rQqyz9HNODwVjVIj64CTkFlUCGrP1B2HX9LXHWHLmtKutEGTeFFX9XhuBzNExA= timeout: 1800s logsBucket: 'gs://tfjs-build-logs' substitutions: _NIGHTLY: '' options: logStreamingOption: 'STREAM_ON' substitution_option: 'ALLOW_LOOSE'