Skip to content

Commit

Permalink
Add the version information to the bazel.exe file
Browse files Browse the repository at this point in the history
Current change do not include version number. Include the version
number in the artifact.


Closes #1841.

--
Change-Id: I2516527829ec28c7c9abea2424f2e7d9585af9b0
Reviewed-on: #1841
MOS_MIGRATED_REVID=134422109
  • Loading branch information
damienmg authored and katre committed Sep 30, 2016
1 parent 1ceaf08 commit dfbbc1c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/ci/windows/compile_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ mkdir -p "${TMPDIR}" # mkdir does work with a path starting with 'c:/', wow
# containing spaces seem to be passed properly.
echo "Bootstrapping Bazel"
retCode=0
source ./scripts/ci/build.sh

# TODO(bazel-team): we should replace ./compile.sh by the same script we use
# for other platform
./compile.sh "$*" || retCode=$?
if (( $retCode != 0 )); then
echo "$retCode" > .unstable
Expand All @@ -50,7 +54,7 @@ fi

# Copy the resulting artifact.
mkdir -p output/ci
cp output/bazel.exe output/ci/
cp output/bazel.exe output/ci/bazel-$(get_full_release_name).exe

# todo(bazel-team): add more tests here.
echo "Running tests"
Expand Down

0 comments on commit dfbbc1c

Please sign in to comment.