We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcfa8fc commit 384e7e7Copy full SHA for 384e7e7
1 file changed
.github/workflows/release.yml
@@ -51,10 +51,19 @@ jobs:
51
with:
52
targets: ${{ matrix.target }}
53
54
+ - name: Install protoc (Linux)
55
+ if: runner.os == 'Linux'
56
+ run: |
57
+ sudo apt-get update
58
+ sudo apt-get install -y protobuf-compiler
59
+
60
+ - name: Install protoc (macOS)
61
+ if: runner.os == 'macOS'
62
+ run: brew install protobuf
63
64
- name: Install cross-compilation tools
65
if: matrix.cross
66
run: |
- sudo apt-get update
67
sudo apt-get install -y gcc-aarch64-linux-gnu
68
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
69
0 commit comments