You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
394 B
26 lines
394 B
#!/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!"
|