• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #!/bin/bash -eu
2 
3 set -o pipefail
4 
5 if [[ ! -d "build/bazel/ci" ]]; then
6   echo "Please run this script from TOP".
7   exit 1
8 fi
9 
10 echo "Running presubmit scripts..."
11 echo
12 
13 echo bp2build.sh
14 build/bazel/ci/bp2build.sh
15 echo
16 
17 echo mixed_libc.sh
18 build/bazel/ci/mixed_libc.sh
19 echo
20 
21 echo run_integration_tests.sh
22 build/soong/tests/run_integration_tests.sh
23 echo
24 
25 echo "All Tests Passed! You Are Awesome!"
26