You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
512 B
22 lines
512 B
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
# These jobs should match .github/workflows/ci.yml. We can't run this script
|
|
# directly in Github since it's too slow for a single job.
|
|
|
|
# Run local bazel tests
|
|
bazel test --test_output=errors //...
|
|
|
|
# Install local maven artifacts.
|
|
util/install-local-snapshot.sh
|
|
|
|
# Run local mvn tests
|
|
pushd examples/maven && mvn compile && popd
|
|
|
|
# Run local gradle tests
|
|
util/run-local-gradle-tests.sh
|
|
util/run-local-gradle-android-tests.sh "4.1.0"
|
|
util/run-local-gradle-android-tests.sh "4.2.0-beta04"
|
|
|