• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set -ex
4
5# These jobs should match .github/workflows/ci.yml. We can't run this script
6# directly in Github since it's too slow for a single job.
7
8# Run local bazel tests
9bazel test --test_output=errors //...
10
11# Install local maven artifacts.
12util/install-local-snapshot.sh
13
14# Run local mvn tests
15pushd examples/maven && mvn compile && popd
16
17# Run local gradle tests
18util/run-local-gradle-tests.sh
19util/run-local-gradle-android-tests.sh "8.1.1"
20
21# TODO: this script is not up-to-date with Dagger github actions
22