Merge pull request #4552 from hashicorp/f-protoc

Add protoc to project
This commit is contained in:
Alex Dadgar 2018-08-01 13:52:07 -07:00 committed by GitHub
commit dac245e13f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 11 deletions

6
Vagrantfile vendored
View File

@ -138,11 +138,11 @@ def configureLinuxProvisioners(vmCfg)
vmCfg.vm.provision "shell", vmCfg.vm.provision "shell",
privileged: true, privileged: true,
path: './scripts/vagrant-linux-protoc.sh' path: './scripts/vagrant-linux-priv-ui.sh'
vmCfg.vm.provision "shell", vmCfg.vm.provision "shell",
privileged: false, privileged: true,
path: './scripts/vagrant-linux-priv-ui.sh' path: './scripts/vagrant-linux-priv-protoc.sh'
return vmCfg return vmCfg
end end

View File

@ -0,0 +1,32 @@
# Make sure you grab the latest version
#!/usr/bin/env bash
set -o errexit
VERSION=3.6.1
DOWNLOAD=https://github.com/google/protobuf/releases/download/v${VERSION}/protoc-${VERSION}-linux-x86_64.zip
function install_protoc() {
if [[ -e /usr/local/bin/protoc ]] ; then
if [ "${VERSION}" = "$(protoc --version | cut -d ' ' -f 2)" ] ; then
return
fi
fi
# Download
wget -q -O /tmp/protoc.zip ${DOWNLOAD}
# Unzip
unzip /tmp/protoc.zip -d /tmp/protoc3
# Move protoc to /usr/local/bin/
sudo mv /tmp/protoc3/bin/* /usr/local/bin/
# Move protoc3/include to /usr/local/include/
sudo mv /tmp/protoc3/include/* /usr/local/include/
# Link
sudo ln -s /usr/local/bin/protoc /usr/bin/protoc
}
install_protoc

View File

@ -1,8 +0,0 @@
#!/usr/bin/env bash
# set up protoc so that we can use it for protobuf generation
PROTOC_ZIP=protoc-3.6.1-linux-x86_64.zip
curl -OL https://github.com/google/protobuf/releases/download/v3.6.1/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
rm -f $PROTOC_ZIP