Merge pull request #19026 from nicolasnoble/bazel-shell

Adding bazel wrapper for our sanctified version of bazel.
pull/19010/head^2
Nicolas Noble 6 years ago committed by GitHub
commit 888964c6ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .gitignore
  2. 53
      tools/bazel.sh

3
.gitignore vendored

@ -109,13 +109,14 @@ Podfile.lock
# IDE specific folder for JetBrains IDEs
.idea/
# Blaze files
# Bazel files
bazel-bin
bazel-genfiles
bazel-grpc
bazel-out
bazel-testlogs
bazel_format_virtual_environment/
tools/bazel-*
# Debug output
gdb.txt

@ -0,0 +1,53 @@
#!/bin/bash
# Copyright 2019 The gRPC Authors
#
# 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.
# Keeping up with Bazel's breaking changes is currently difficult.
# This script wraps calling bazel by downloading the currently
# supported version, and then calling it. This way, we can make sure
# that running bazel will always get meaningful results, at least
# until Bazel 1.0 is released.
set -e
VERSION=0.24.1
CWD=`pwd`
BASEURL=https://github.com/bazelbuild/bazel/releases/download/
cd `dirname $0`
TOOLDIR=`pwd`
case `uname -sm` in
"Linux x86_64")
suffix=linux-x86_64
;;
"Darwin x86_64")
suffix=darwin-x86_64
;;
*)
echo "Unsupported architecture: `uname -sm`"
exit 1
;;
esac
filename=bazel-$VERSION-$suffix
if [ ! -x $filename ] ; then
curl -L $BASEURL/$VERSION/$filename > $filename
chmod a+x $filename
fi
cd $CWD
$TOOLDIR/$filename $@
Loading…
Cancel
Save