mirror of https://github.com/AMT-Cheif/drift.git
17 lines
358 B
Bash
Executable File
17 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
EXIT_CODE=0
|
|
|
|
pushd extras/integration_tests/vm
|
|
echo "Running integration tests with moor_ffi & VM"
|
|
dart pub upgrade
|
|
dart test || EXIT_CODE=$?
|
|
popd
|
|
|
|
pushd extras/with_built_value
|
|
echo "Running build runner in with_built_value"
|
|
dart pub upgrade
|
|
dart run build_runner build --delete-conflicting-outputs || EXIT_CODE=$?
|
|
popd
|
|
|
|
exit $EXIT_CODE |