aboutsummaryrefslogtreecommitdiff
path: root/scripts/run_presubmits.sh
blob: d70d9c794a36ce2d186a1b9e6a635cb1c65fef28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash -eu

set -o pipefail

if [[ ! -d "build/bazel/ci" ]]; then
  echo "Please run this script from TOP".
  exit 1
fi

echo "Running presubmit scripts..."
echo

echo bp2build.sh
build/bazel/ci/bp2build.sh
echo

echo mixed_libc.sh
build/bazel/ci/mixed_libc.sh
echo

echo run_integration_tests.sh
build/soong/tests/run_integration_tests.sh
echo

echo "All Tests Passed! You Are Awesome!"