File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 16
16
17
17
steps :
18
18
- uses : actions/checkout@v3
19
+ - name : Install protoc
20
+ run : script/install-protoc
19
21
- name : Build
20
22
run : cargo build
21
23
- name : Run tests
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ # Unconditionally install the exact version of protoc that we use,
3
+ # overwriting whatever is installed in /usr/local/bin.
4
+ #
5
+ # We have a CI job that checks the generated code, looking for an exact match,
6
+ # so it's important that everyone use the same version of protoc.
7
+
8
+ # Unofficial bash strict mode
9
+ set -euo pipefail
10
+ IFS=$' \n\t '
11
+
12
+ # Don't use sudo if we're root. Not every Docker image has sudo.
13
+ SUDO=sudo
14
+ if [[ $EUID == " 0" ]]; then
15
+ SUDO=
16
+ fi
17
+
18
+ if ! type -P unzip > /dev/null; then
19
+ echo " Installing unzip..."
20
+ # This should only happen on Linux. MacOS ships with unzip.
21
+ sudo apt-get install -y unzip
22
+ fi
23
+
24
+ echo " Installing protoc..."
25
+
26
+ # Download protoc
27
+ protoc_version=" 3.17.0"
28
+ protoc_os=" osx-x86_64"
29
+ if [[ $OSTYPE == linux* ]]; then
30
+ protoc_os=" linux-x86_64"
31
+ fi
32
+ mkdir _tools
33
+ cd _tools
34
+ protoc_zip=" protoc-$protoc_version -$protoc_os .zip"
35
+ curl -OL " https://github.com/protocolbuffers/protobuf/releases/download/v$protoc_version /$protoc_zip "
36
+
37
+ # Install protoc to /usr/local
38
+ prefix=/usr/local
39
+ unzip -o $protoc_zip -d tmp
40
+ $SUDO mkdir -p $prefix /bin
41
+ $SUDO mv tmp/bin/protoc $prefix /bin/protoc
42
+ $SUDO mkdir -p $prefix /include/google/protobuf
43
+ $SUDO rm -rf $prefix /include/google/protobuf
44
+ $SUDO mv tmp/include/google/protobuf $prefix /include/google/protobuf
45
+ cd ..
46
+ rm -rf _tools
You can’t perform that action at this time.
0 commit comments