blob: 3c7069becbcc0499dceee46815889d34a5a213b4 [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
set -ex
PROTOC_VERSION=3.14.0
if uname -s | grep MINGW64_NT || uname -s | grep CYGWIN_NT-6.1; then
PROTOC_ZIP=protoc-"$PROTOC_VERSION"-win64.zip
elif uname -s | grep Darwin; then
PROTOC_ZIP=protoc-"$PROTOC_VERSION"-osx-x86_64.zip
elif uname -s | grep Linux; then
PROTOC_ZIP=protoc-"$PROTOC_VERSION"-linux-x86_64.zip
else
echo "Sorry, we cannot install protoc for you, please visit https://github.com/protocolbuffers/protobuf and install protoc by yourself."
fi
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v"$PROTOC_VERSION"/$PROTOC_ZIP
mkdir -p $HOME/usr/local
unzip -o $PROTOC_ZIP -d $HOME/usr/local bin/protoc > /dev/null 2>&1 || true
unzip -o $PROTOC_ZIP -d $HOME/usr/local bin/protoc.exe > /dev/null 2>&1 || true
mv $HOME/usr/local/bin/protoc.exe $HOME/usr/local/bin/protoc > /dev/null 2>&1 || true
chmod 755 $HOME/usr/local/bin/protoc
rm -f $PROTOC_ZIP
export PATH=$PATH:$HOME/usr/local/bin
protoc --version