Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Damien Martin-Guillerez | f88f4d8 | 2015-09-25 13:56:55 +0000 | [diff] [blame] | 3 | # Copyright 2014 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 17 | # This script bootstraps building a Bazel binary without Bazel then |
| 18 | # use this compiled Bazel to bootstrap Bazel itself. It can also |
| 19 | # be provided with a previous version of Bazel to bootstrap Bazel |
| 20 | # itself. |
| 21 | # The resulting binary can be found at output/bazel. |
David Mankin | 5cafe13 | 2015-05-28 20:20:56 +0000 | [diff] [blame] | 22 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 23 | set -o errexit |
| 24 | |
| 25 | cd "$(dirname "$0")" |
| 26 | |
Julio Merino | 5909d9d | 2016-02-25 21:44:31 +0000 | [diff] [blame] | 27 | # Set the default verbose mode in buildenv.sh so that we do not display command |
| 28 | # output unless there is a failure. We do this conditionally to offer the user |
| 29 | # a chance of overriding this in case they want to do so. |
| 30 | : ${VERBOSE:=no} |
| 31 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 32 | source scripts/bootstrap/buildenv.sh |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 33 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 34 | function usage() { |
Kristina Chodorow | 84450b8 | 2016-01-28 15:16:02 +0000 | [diff] [blame] | 35 | [ -n "${1:-compile}" ] && echo "Invalid command(s): $1" >&2 |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 36 | echo "syntax: $0 [command[,command]* [BAZEL_BIN [BAZEL_SUM]]]" >&2 |
| 37 | echo " General purpose commands:" >&2 |
Kristina Chodorow | 84450b8 | 2016-01-28 15:16:02 +0000 | [diff] [blame] | 38 | echo " compile = compile the bazel binary (default)" >&2 |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 39 | echo " Commands for developers:" >&2 |
Kristina Chodorow | 84450b8 | 2016-01-28 15:16:02 +0000 | [diff] [blame] | 40 | echo " all = compile,determinism,test" >&2 |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 41 | echo " determinism = test for stability of Bazel builds" >&2 |
| 42 | echo " test = run the full test suite of Bazel" >&2 |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 43 | exit 1 |
| 44 | } |
| 45 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 46 | function parse_options() { |
Kristina Chodorow | 84450b8 | 2016-01-28 15:16:02 +0000 | [diff] [blame] | 47 | local keywords="(compile|all|determinism|bootstrap|test)" |
| 48 | COMMANDS="${1:-compile}" |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 49 | [[ "${COMMANDS}" =~ ^$keywords(,$keywords)*$ ]] || usage "$@" |
| 50 | DO_COMPILE= |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 51 | DO_CHECKSUM= |
| 52 | DO_FULL_CHECKSUM=1 |
| 53 | DO_TESTS= |
Kristina Chodorow | 84450b8 | 2016-01-28 15:16:02 +0000 | [diff] [blame] | 54 | [[ "${COMMANDS}" =~ (compile|all) ]] && DO_COMPILE=1 |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 55 | [[ "${COMMANDS}" =~ (bootstrap|determinism|all) ]] && DO_CHECKSUM=1 |
| 56 | [[ "${COMMANDS}" =~ (bootstrap) ]] && DO_FULL_CHECKSUM= |
| 57 | [[ "${COMMANDS}" =~ (test|all) ]] && DO_TESTS=1 |
| 58 | |
| 59 | BAZEL_BIN=${2:-"bazel-bin/src/bazel"} |
Damien Martin-Guillerez | 4f89281 | 2015-07-02 08:38:58 +0000 | [diff] [blame] | 60 | BAZEL_SUM=${3:-"x"} |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 61 | } |
| 62 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 63 | parse_options "${@}" |
Kristina Chodorow | 8c6b3bb | 2015-04-09 19:05:34 +0000 | [diff] [blame] | 64 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 65 | mkdir -p output |
| 66 | : ${BAZEL:=${2-}} |
Kristina Chodorow | ac27114 | 2015-03-06 16:00:46 +0000 | [diff] [blame] | 67 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 68 | # |
| 69 | # Create an initial binary so we can host ourself |
| 70 | # |
| 71 | if [ ! -x "${BAZEL}" ]; then |
| 72 | display "$INFO You can skip this first step by providing a path to the bazel binary as second argument:" |
| 73 | display "$INFO $0 ${COMMANDS} /path/to/bazel" |
| 74 | new_step 'Building Bazel from scratch' |
| 75 | source scripts/bootstrap/compile.sh |
Kristina Chodorow | dccd81f | 2016-02-01 17:42:07 +0000 | [diff] [blame] | 76 | # The DO_COMPILE flow will actually create the bazel binary and set BAZEL. |
| 77 | DO_COMPILE=1 |
Daniel Wagner-Hall | 13ba331 | 2015-03-20 05:45:45 +0000 | [diff] [blame] | 78 | fi |
| 79 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 80 | # |
| 81 | # Bootstrap bazel using the previous bazel binary = release binary |
| 82 | # |
Damien Martin-Guillerez | a377af0 | 2015-06-24 12:04:27 +0000 | [diff] [blame] | 83 | if [ "${EMBED_LABEL-x}" = "x" ]; then |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 84 | # Add a default label when unspecified |
| 85 | git_sha1=$(git_sha1) |
Damien Martin-Guillerez | 28e67b5 | 2016-03-14 11:01:31 +0000 | [diff] [blame] | 86 | EMBED_LABEL="$(get_last_version) (@${git_sha1:-non-git})" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 87 | fi |
| 88 | |
Damien Martin-Guillerez | 3d796fe | 2016-01-11 10:07:57 +0000 | [diff] [blame] | 89 | if [[ $PLATFORM == "darwin" ]] && \ |
| 90 | xcodebuild -showsdks 2> /dev/null | grep -q '\-sdk iphonesimulator'; then |
| 91 | EXTRA_BAZEL_ARGS="${EXTRA_BAZEL_ARGS-} --define IPHONE_SDK=1" |
Dmitry Lomov | ac6ed79 | 2015-12-22 19:24:00 +0000 | [diff] [blame] | 92 | fi |
Damien Martin-Guillerez | 3d796fe | 2016-01-11 10:07:57 +0000 | [diff] [blame] | 93 | source scripts/bootstrap/bootstrap.sh |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 94 | |
Lukacs Berki | 0d5d522 | 2015-10-12 13:24:44 +0000 | [diff] [blame] | 95 | if [ $DO_COMPILE ]; then |
| 96 | new_step 'Building Bazel with Bazel' |
| 97 | display "." |
Damien Martin-Guillerez | 50fce86 | 2016-01-18 11:30:10 +0000 | [diff] [blame] | 98 | log "Building output/bazel" |
Damien Martin-Guillerez | 04d46ab | 2016-04-13 19:27:56 +0000 | [diff] [blame] | 99 | bazel_build "src:bazel${EXE_EXT}" |
| 100 | cp -f "bazel-bin/src/bazel${EXE_EXT}" "output/bazel${EXE_EXT}" |
Dmitry Lomov | 9d40a60 | 2016-02-15 16:15:03 +0000 | [diff] [blame] | 101 | chmod 0755 "output/bazel${EXE_EXT}" |
| 102 | BAZEL="$(pwd)/output/bazel${EXE_EXT}" |
Lukacs Berki | 0d5d522 | 2015-10-12 13:24:44 +0000 | [diff] [blame] | 103 | fi |
| 104 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 105 | # |
| 106 | # Output is deterministic between two bootstrapped bazel binary using the actual tools and the |
| 107 | # released binary. |
| 108 | # |
| 109 | if [ $DO_CHECKSUM ]; then |
| 110 | new_step "Determinism test" |
Damien Martin-Guillerez | 4349f94 | 2015-06-24 13:28:08 +0000 | [diff] [blame] | 111 | if [ ! -f ${BAZEL_SUM:-x} ]; then |
| 112 | BAZEL_SUM=bazel-out/bazel_checksum |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 113 | log "First build" |
| 114 | bootstrap_test ${BAZEL} ${BAZEL_SUM} |
| 115 | else |
| 116 | BOOTSTRAP=${BAZEL} |
| 117 | fi |
| 118 | if [ "${BAZEL_SUM}" != "${OUTPUT_DIR}/bazel_checksum" ]; then |
| 119 | cp ${BAZEL_SUM} ${OUTPUT_DIR}/bazel_checksum |
| 120 | fi |
| 121 | if [ $DO_FULL_CHECKSUM ]; then |
| 122 | log "Second build" |
| 123 | bootstrap_test ${BOOTSTRAP} bazel-out/bazel_checksum |
| 124 | log "Comparing output" |
| 125 | (diff -U 0 ${OUTPUT_DIR}/bazel_checksum bazel-out/bazel_checksum >&2) \ |
| 126 | || fail "Differences detected in outputs!" |
| 127 | fi |
| 128 | fi |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 129 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 130 | # |
| 131 | # Tests |
| 132 | # |
| 133 | if [ $DO_TESTS ]; then |
| 134 | new_step "Running tests" |
| 135 | display "." |
Lukacs Berki | 678ba23 | 2015-09-03 13:28:55 +0000 | [diff] [blame] | 136 | |
Damien Martin-Guillerez | b81f90c | 2015-09-04 15:52:26 +0000 | [diff] [blame] | 137 | ndk_target="$(get_bind_target //external:android_ndk_for_testing)" |
| 138 | sdk_target="$(get_bind_target //external:android_sdk_for_testing)" |
| 139 | if [ "$ndk_target" = "//:dummy" -o "$sdk_target" = "//:dummy" ]; then |
Lukacs Berki | 678ba23 | 2015-09-03 13:28:55 +0000 | [diff] [blame] | 140 | display "$WARNING Android SDK or NDK are not set in the WORKSPACE file. Android tests will not be run." |
| 141 | fi |
| 142 | |
Damien Martin-Guillerez | 338dc56 | 2015-06-23 17:15:12 +0000 | [diff] [blame] | 143 | [ -n "$JAVAC_VERSION" ] || get_java_version |
| 144 | if [[ ! "${BAZEL_TEST_FILTERS-}" =~ "-jdk8" ]] \ |
| 145 | && [ "8" -gt ${JAVAC_VERSION#*.} ]; then |
| 146 | display "$WARNING Your version of Java is lower than 1.8!" |
| 147 | display "$WARNING Deactivating Java 8 tests, please use a JDK 8 to fully" |
| 148 | display "$WARNING test Bazel." |
| 149 | if [ -n "${BAZEL_TEST_FILTERS-}" ]; then |
| 150 | BAZEL_TEST_FILTERS="${BAZEL_TEST_FILTERS},-jdk8" |
| 151 | else |
| 152 | BAZEL_TEST_FILTERS="-jdk8" |
| 153 | fi |
| 154 | fi |
Damien Martin-Guillerez | 50d124b | 2015-06-24 15:20:09 +0000 | [diff] [blame] | 155 | $BAZEL --bazelrc=${BAZELRC} --nomaster_bazelrc test \ |
Damien Martin-Guillerez | 338dc56 | 2015-06-23 17:15:12 +0000 | [diff] [blame] | 156 | --test_tag_filters="${BAZEL_TEST_FILTERS-}" \ |
Damien Martin-Guillerez | 7cf300e | 2015-06-16 12:31:03 +0000 | [diff] [blame] | 157 | --build_tests_only \ |
Damien Martin-Guillerez | 04d46ab | 2016-04-13 19:27:56 +0000 | [diff] [blame] | 158 | --nolegacy_bazel_java_test \ |
Damien Martin-Guillerez | 3d796fe | 2016-01-11 10:07:57 +0000 | [diff] [blame] | 159 | ${EXTRA_BAZEL_ARGS} \ |
Damien Martin-Guillerez | d6f4808 | 2015-06-05 10:50:43 +0000 | [diff] [blame] | 160 | --javacopt="-source ${JAVA_VERSION} -target ${JAVA_VERSION}" \ |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 161 | -k --test_output=errors //src/... //third_party/ijar/... //scripts/... \ |
| 162 | || fail "Tests failed" |
Damien Martin-Guillerez | d6f4808 | 2015-06-05 10:50:43 +0000 | [diff] [blame] | 163 | fi |
| 164 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 165 | clear_log |
| 166 | display "Build successful! Binary is here: ${BAZEL}" |