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.
19 lines
353 B
19 lines
353 B
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Run a CI build/test target, e.g. docs, asan.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. "$(dirname "$0")"/build_setup.sh
|
||
|
|
||
|
echo "building using ${NUM_CPUS} CPUs"
|
||
|
|
||
|
if [[ "$1" == "bazel.build" ]]; then
|
||
|
echo "bazel build..."
|
||
|
bazel --batch build ${BAZEL_BUILD_OPTIONS} //...
|
||
|
exit 0
|
||
|
else
|
||
|
echo "Invalid do_ci.sh target, see ci/README.md for valid targets."
|
||
|
exit 1
|
||
|
fi
|