Update deps when testing sibling workspaces.

This commit is contained in:
Sergio Benitez 2021-06-09 03:52:44 -07:00
parent 394982edbd
commit 32ec00ca19
1 changed files with 4 additions and 0 deletions

View File

@ -122,6 +122,7 @@ function test_examples() {
# in core that secret key failing/not failing works as expected, but here we # in core that secret key failing/not failing works as expected, but here we
# provide a valid secret_key so tests don't fail. # provide a valid secret_key so tests don't fail.
echo ":: Building and testing examples..." echo ":: Building and testing examples..."
indir "${EXAMPLES_DIR}" $CARGO update
ROCKET_SECRET_KEY="itlYmFR2vYKrOmFhupMIn/hyB6lYCCTXz4yaQX89XVg=" \ ROCKET_SECRET_KEY="itlYmFR2vYKrOmFhupMIn/hyB6lYCCTXz4yaQX89XVg=" \
indir "${EXAMPLES_DIR}" $CARGO test --all $@ indir "${EXAMPLES_DIR}" $CARGO test --all $@
} }
@ -131,14 +132,17 @@ function test_default() {
indir "${PROJECT_ROOT}" $CARGO test --all --all-features $@ indir "${PROJECT_ROOT}" $CARGO test --all --all-features $@
echo ":: Checking benchmarks..." echo ":: Checking benchmarks..."
indir "${BENCHMARKS_ROOT}" $CARGO update
indir "${BENCHMARKS_ROOT}" $CARGO check --benches --all-features $@ indir "${BENCHMARKS_ROOT}" $CARGO check --benches --all-features $@
echo ":: Checking fuzzers..." echo ":: Checking fuzzers..."
indir "${FUZZ_ROOT}" $CARGO update
indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@ indir "${FUZZ_ROOT}" $CARGO check --all --all-features $@
} }
function run_benchmarks() { function run_benchmarks() {
echo ":: Running benchmarks..." echo ":: Running benchmarks..."
indir "${BENCHMARKS_ROOT}" $CARGO update
indir "${BENCHMARKS_ROOT}" $CARGO bench $@ indir "${BENCHMARKS_ROOT}" $CARGO bench $@
} }