93dc19d39d
Needed because we import absl-py in our bazel.workspace file. It only worked before in b, not mixed builds, because b was run from the real android tree instead of out/soong/workspace. Bug: 234449134 Bug: 249685973 Test: Presubmits Change-Id: I51c28e23260bed7ca7d4968fd823f52f0d26a0ab
16 lines
610 B
Bash
Executable file
16 lines
610 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.
|
|
# TODO(b/260278287) the bazel server won't shut down for some reason when run on the build server
|
|
# "$TOP/build/soong/tests/apex_comparison_tests.sh"
|