|  | #!/bin/bash | 
|  |  | 
|  | # Copyright 2014 The Bazel Authors. All rights reserved. | 
|  | # | 
|  | # Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | # you may not use this file except in compliance with the License. | 
|  | # You may obtain a copy of the License at | 
|  | # | 
|  | #    http://www.apache.org/licenses/LICENSE-2.0 | 
|  | # | 
|  | # Unless required by applicable law or agreed to in writing, software | 
|  | # distributed under the License is distributed on an "AS IS" BASIS, | 
|  | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | # See the License for the specific language governing permissions and | 
|  | # limitations under the License. | 
|  |  | 
|  | # This script bootstraps building a Bazel binary without Bazel then | 
|  | # use this compiled Bazel to bootstrap Bazel itself. It can also | 
|  | # be provided with a previous version of Bazel to bootstrap Bazel | 
|  | # itself. | 
|  | # The resulting binary can be found at output/bazel. | 
|  |  | 
|  | set -o errexit | 
|  |  | 
|  | cd "$(dirname "$0")" | 
|  |  | 
|  | source scripts/bootstrap/buildenv.sh | 
|  |  | 
|  | function usage() { | 
|  | [ -n "${1:-compile}" ] && echo "Invalid command(s): $1" >&2 | 
|  | echo "syntax: $0 [command[,command]* [BAZEL_BIN [BAZEL_SUM]]]" >&2 | 
|  | echo "  General purpose commands:" >&2 | 
|  | echo "     compile       = compile the bazel binary (default)" >&2 | 
|  | echo "  Commands for developers:" >&2 | 
|  | echo "     all         = compile,determinism,test" >&2 | 
|  | echo "     determinism = test for stability of Bazel builds" >&2 | 
|  | echo "     test        = run the full test suite of Bazel" >&2 | 
|  | exit 1 | 
|  | } | 
|  |  | 
|  | function parse_options() { | 
|  | local keywords="(compile|all|determinism|bootstrap|test)" | 
|  | COMMANDS="${1:-compile}" | 
|  | [[ "${COMMANDS}" =~ ^$keywords(,$keywords)*$ ]] || usage "$@" | 
|  | DO_COMPILE= | 
|  | DO_CHECKSUM= | 
|  | DO_FULL_CHECKSUM=1 | 
|  | DO_TESTS= | 
|  | [[ "${COMMANDS}" =~ (compile|all) ]] && DO_COMPILE=1 | 
|  | [[ "${COMMANDS}" =~ (bootstrap|determinism|all) ]] && DO_CHECKSUM=1 | 
|  | [[ "${COMMANDS}" =~ (bootstrap) ]] && DO_FULL_CHECKSUM= | 
|  | [[ "${COMMANDS}" =~ (test|all) ]] && DO_TESTS=1 | 
|  |  | 
|  | BAZEL_BIN=${2:-"bazel-bin/src/bazel"} | 
|  | BAZEL_SUM=${3:-"x"} | 
|  | } | 
|  |  | 
|  | parse_options "${@}" | 
|  |  | 
|  | mkdir -p output | 
|  | : ${BAZEL:=${2-}} | 
|  |  | 
|  | # | 
|  | # Create an initial binary so we can host ourself | 
|  | # | 
|  | if [ ! -x "${BAZEL}" ]; then | 
|  | display "$INFO You can skip this first step by providing a path to the bazel binary as second argument:" | 
|  | display "$INFO    $0 ${COMMANDS} /path/to/bazel" | 
|  | new_step 'Building Bazel from scratch' | 
|  | source scripts/bootstrap/compile.sh | 
|  | # The DO_COMPILE flow will actually create the bazel binary and set BAZEL. | 
|  | DO_COMPILE=1 | 
|  | fi | 
|  |  | 
|  | # | 
|  | # Bootstrap bazel using the previous bazel binary = release binary | 
|  | # | 
|  | if [ "${EMBED_LABEL-x}" = "x" ]; then | 
|  | # Add a default label when unspecified | 
|  | git_sha1=$(git_sha1) | 
|  | EMBED_LABEL="head (@${git_sha1:-non-git})" | 
|  | fi | 
|  |  | 
|  | if [[ $PLATFORM == "darwin" ]] && \ | 
|  | xcodebuild -showsdks 2> /dev/null | grep -q '\-sdk iphonesimulator'; then | 
|  | EXTRA_BAZEL_ARGS="${EXTRA_BAZEL_ARGS-} --define IPHONE_SDK=1" | 
|  | fi | 
|  | source scripts/bootstrap/bootstrap.sh | 
|  |  | 
|  | if [ $DO_COMPILE ]; then | 
|  | new_step 'Building Bazel with Bazel' | 
|  | display "." | 
|  | log "Building output/bazel" | 
|  | bazel_build src:bazel | 
|  | cp -f bazel-bin/src/bazel output/bazel | 
|  | chmod 0755 output/bazel | 
|  | BAZEL=$(pwd)/output/bazel | 
|  | fi | 
|  |  | 
|  | # | 
|  | # Output is deterministic between two bootstrapped bazel binary using the actual tools and the | 
|  | # released binary. | 
|  | # | 
|  | if [ $DO_CHECKSUM ]; then | 
|  | new_step "Determinism test" | 
|  | if [ ! -f ${BAZEL_SUM:-x} ]; then | 
|  | BAZEL_SUM=bazel-out/bazel_checksum | 
|  | log "First build" | 
|  | bootstrap_test ${BAZEL} ${BAZEL_SUM} | 
|  | else | 
|  | BOOTSTRAP=${BAZEL} | 
|  | fi | 
|  | if [ "${BAZEL_SUM}" != "${OUTPUT_DIR}/bazel_checksum" ]; then | 
|  | cp ${BAZEL_SUM} ${OUTPUT_DIR}/bazel_checksum | 
|  | fi | 
|  | if [ $DO_FULL_CHECKSUM ]; then | 
|  | log "Second build" | 
|  | bootstrap_test ${BOOTSTRAP} bazel-out/bazel_checksum | 
|  | log "Comparing output" | 
|  | (diff -U 0 ${OUTPUT_DIR}/bazel_checksum bazel-out/bazel_checksum >&2) \ | 
|  | || fail "Differences detected in outputs!" | 
|  | fi | 
|  | fi | 
|  |  | 
|  | # | 
|  | # Tests | 
|  | # | 
|  | if [ $DO_TESTS ]; then | 
|  | new_step "Running tests" | 
|  | display "." | 
|  |  | 
|  | ndk_target="$(get_bind_target //external:android_ndk_for_testing)" | 
|  | sdk_target="$(get_bind_target //external:android_sdk_for_testing)" | 
|  | if [ "$ndk_target" = "//:dummy" -o "$sdk_target" = "//:dummy" ]; then | 
|  | display "$WARNING Android SDK or NDK are not set in the WORKSPACE file. Android tests will not be run." | 
|  | fi | 
|  |  | 
|  | [ -n "$JAVAC_VERSION" ] || get_java_version | 
|  | if [[ ! "${BAZEL_TEST_FILTERS-}" =~ "-jdk8" ]] \ | 
|  | && [ "8" -gt ${JAVAC_VERSION#*.} ]; then | 
|  | display "$WARNING Your version of Java is lower than 1.8!" | 
|  | display "$WARNING Deactivating Java 8 tests, please use a JDK 8 to fully" | 
|  | display "$WARNING test Bazel." | 
|  | if [ -n "${BAZEL_TEST_FILTERS-}" ]; then | 
|  | BAZEL_TEST_FILTERS="${BAZEL_TEST_FILTERS},-jdk8" | 
|  | else | 
|  | BAZEL_TEST_FILTERS="-jdk8" | 
|  | fi | 
|  | fi | 
|  | $BAZEL --bazelrc=${BAZELRC} --nomaster_bazelrc test \ | 
|  | --test_tag_filters="${BAZEL_TEST_FILTERS-}" \ | 
|  | --build_tests_only \ | 
|  | --nolegacy_bazel_java_test \ | 
|  | ${EXTRA_BAZEL_ARGS} \ | 
|  | --javacopt="-source ${JAVA_VERSION} -target ${JAVA_VERSION}" \ | 
|  | -k --test_output=errors //src/... //third_party/ijar/... //scripts/... \ | 
|  | || fail "Tests failed" | 
|  | fi | 
|  |  | 
|  | clear_log | 
|  | display "Build successful! Binary is here: ${BAZEL}" |