762c2def20
Revert submission 2308141-colefaust_run_b_from_out_folder Reason for revert: Breaks CI due to more instances of the bazel shutdown issue Reverted Changes: I51c28e232:Allowlist build files in external/python/absl-py I9e6530d95:Cd into the bazel workspace instead of using --pac... Change-Id: Ice47ef2baaef9976546f9562dc7dd9b19b383d59
15 lines
510 B
Bash
Executable file
15 lines
510 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
set -o pipefail
|
|
|
|
TOP="$(readlink -f "$(dirname "$0")"/../../..)"
|
|
"$TOP/build/soong/tests/androidmk_test.sh"
|
|
"$TOP/build/soong/tests/bootstrap_test.sh"
|
|
"$TOP/build/soong/tests/mixed_mode_test.sh"
|
|
"$TOP/build/soong/tests/bp2build_bazel_test.sh"
|
|
"$TOP/build/soong/tests/soong_test.sh"
|
|
"$TOP/build/bazel/ci/rbc_regression_test.sh" aosp_arm64-userdebug
|
|
|
|
# The following tests build against the full source tree and don't rely on the
|
|
# mock client.
|
|
"$TOP/build/soong/tests/apex_comparison_tests.sh"
|