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