Skip to content

Commit

Permalink
Fix installer under OS X
Browse files Browse the repository at this point in the history
The installer was missing the StdRedirect.dylib after a recent change.
This was breaking the Tutorial job on ci.bazel.io (and iOS builds using
that installer).

--
MOS_MIGRATED_REVID=111855462
  • Loading branch information
damienmg committed Jan 11, 2016
1 parent a327fae commit 7a02e5d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,16 @@ function bazel_build() {
fi

# Build the packages
local ARGS=
if [[ $PLATFORM == "darwin" ]] && \
xcodebuild -showsdks 2> /dev/null | grep -q '\-sdk iphonesimulator'; then
ARGS="--define IPHONE_SDK=1"
fi
./output/bazel --bazelrc=${BAZELRC:-/dev/null} --nomaster_bazelrc build \
--embed_label=${release_label} --stamp \
--workspace_status_command=scripts/ci/build_status_command.sh \
--define JAVA_VERSION=${JAVA_VERSION} \
${ARGS} \
//scripts/packages/... || exit $?

if [ -n "${1-}" ]; then
Expand Down

0 comments on commit 7a02e5d

Please sign in to comment.