Fix samples.

This commit is contained in:
2023-03-16 17:39:35 -07:00
parent 900b430e58
commit d561146024
4 changed files with 12 additions and 3 deletions

9
tools/build-samples.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
cd "$(dirname "${0}")/.."
for SAMPLE_PATH in samples/*
do
pushd "${SAMPLE_PATH}" > /dev/null
./gradlew -q build
popd > /dev/null
done