Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tfjs-core/scripts/test-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@ echo '######################'
echo 'Nightly build or version.ts was modified.'
echo 'Testing layers/converter/node/data against tfjs-core@master.'
echo '######################'
yarn build && yarn build-test-snippets && yarn yalc publish
yarn build && yarn build-test-snippets

echo 'Testing layers'
cd ../tfjs-layers
yarn && yarn link-local '@tensorflow/tfjs-core'
yarn
yarn test-ci
LAYERS_EXIT_CODE=$?

echo 'Testing node'
cd ../tfjs-node
yarn && yarn link-local '@tensorflow/tfjs-core'
yarn
yarn test-ci
NODE_EXIT_CODE=$?

echo 'Testing converter'
cd ../tfjs-converter
yarn && yarn link-local '@tensorflow/tfjs-core'
yarn
yarn test-ci
CONVERTER_EXIT_CODE=$?

echo 'Testing data'
cd ../tfjs-data
yarn && yarn link-local '@tensorflow/tfjs-core'
yarn
yarn test-ci
DATA_EXIT_CODE=$?

Expand Down