Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cloudbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ steps:
entrypoint: 'yarn'
id: 'test-ts-integration'
args: ['test-ts-integration']
waitFor: ['yarn']
waitFor: ['yarn', 'test']
timeout: 1800s
logsBucket: 'gs://tfjs-build-logs'
options:
Expand Down
1 change: 1 addition & 0 deletions scripts/test-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

set -e

yarn build-addon-from-source
yarn build
yarn lint
yarn test
2 changes: 1 addition & 1 deletion scripts/test-ts-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function print_status() {
}

function test() {
yarn && yarn build && yarn yalc publish
yarn && yarn build-addon-from-source && yarn build && yarn yalc publish

cd integration/typescript
yarn && yarn yalc add '@tensorflow/tfjs-node' && yarn prep && yarn test
Expand Down