blob: 541b4df41d5da93c1d5ba7646a61683d6d2069c4 [file] [log] [blame]
#!/bin/bash
# Copyright 2015 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.
# Ideally we would call directly script/ci/build.sh just like we do
# for the linux script but we are not there yet.
# Ensure we are in the root directory
cd $(dirname $0)/../../..
# Even though there are no quotes around $* in the .bat file, arguments
# containing spaces seem to be passed properly.
source ./scripts/ci/build.sh
# Bazel still needs to know where bash is, take it from cygpath.
export BAZEL_SH="$(cygpath --windows /bin/bash)"
# TODO(bazel-team): we should replace ./compile.sh by the same script we use
# for other platform
release_label="$(get_full_release_name)"
if [ -n "${release_label}" ]; then
export EMBED_LABEL="${release_label}"
fi
./compile.sh "$*"
# Copy the resulting artifact.
mkdir -p output/ci
cp output/bazel.exe output/ci/bazel-$(get_full_release_name).exe
zip -j output/ci/bazel-$(get_full_release_name).zip output/bazel.exe