cloudbuild.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. steps:
  2. # Install common dependencies.
  3. - name: 'node:10'
  4. id: 'yarn-common'
  5. entrypoint: 'yarn'
  6. args: ['install']
  7. # Install tfjs-core dependencies.
  8. - name: 'node:10'
  9. dir: 'tfjs-core'
  10. id: 'yarn'
  11. entrypoint: 'yarn'
  12. args: ['install']
  13. waitFor: ['yarn-common']
  14. # Build
  15. - name: 'node:10'
  16. dir: 'tfjs-core'
  17. id: 'build'
  18. entrypoint: 'yarn'
  19. args: ['build-ci']
  20. waitFor: ['yarn']
  21. # Run unit tests.
  22. - name: 'node:10'
  23. dir: 'tfjs-core'
  24. id: 'test'
  25. entrypoint: 'yarn'
  26. args: ['test-ci']
  27. waitFor: ['build']
  28. env: ['BROWSERSTACK_USERNAME=deeplearnjs1']
  29. secretEnv: ['BROWSERSTACK_KEY']
  30. # Run unit tests in react native.
  31. - name: 'node:10'
  32. dir: 'tfjs-react-native/integration_rn59'
  33. id: 'react-native-from-core'
  34. entrypoint: 'yarn'
  35. args: ['test-ci', 'use-core-build']
  36. waitFor: ['build']
  37. env: ['BROWSERSTACK_USERNAME=deeplearnjs1']
  38. secretEnv: ['BROWSERSTACK_KEY']
  39. # bundle size check
  40. - name: 'node:10'
  41. dir: 'tfjs-core'
  42. id: 'test-bundle-size'
  43. entrypoint: 'yarn'
  44. args: ['test-bundle-size']
  45. waitFor: ['yarn']
  46. # test doc snippets
  47. - name: 'node:10'
  48. dir: 'tfjs-core'
  49. id: 'test-snippets'
  50. entrypoint: 'yarn'
  51. args: ['test-snippets']
  52. waitFor: ['yarn']
  53. # test Async backends
  54. - name: 'node:10'
  55. dir: 'tfjs-core'
  56. id: 'test-async-backends'
  57. entrypoint: 'yarn'
  58. args: ['test-async-backends-ci']
  59. waitFor: ['build']
  60. # General configuration
  61. secrets:
  62. - kmsKeyName: projects/learnjs-174218/locations/global/keyRings/tfjs/cryptoKeys/enc
  63. secretEnv:
  64. BROWSERSTACK_KEY: CiQAkwyoIW0LcnxymzotLwaH4udVTQFBEN4AEA5CA+a3+yflL2ASPQAD8BdZnGARf78MhH5T9rQqyz9HNODwVjVIj64CTkFlUCGrP1B2HX9LXHWHLmtKutEGTeFFX9XhuBzNExA=
  65. timeout: 1800s
  66. logsBucket: 'gs://tfjs-build-logs'
  67. substitutions:
  68. _NIGHTLY: ''
  69. options:
  70. logStreamingOption: 'STREAM_ON'
  71. machineType: 'N1_HIGHCPU_8'
  72. substitution_option: 'ALLOW_LOOSE'