10bcb4c908
We already have a rbc product config ci postsubmit target, but we want to add a small presubmit check as well. run_integration_tests.sh is already run on presubmit, so add it there. Test: Presubmits Change-Id: Id6fc282261507fb49a57b578ce2fdf20855dd6fd
10 lines
321 B
Bash
Executable file
10 lines
321 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
set -o pipefail
|
|
|
|
TOP="$(readlink -f "$(dirname "$0")"/../../..)"
|
|
"$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_product_config.sh" aosp_arm64-userdebug
|