We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8927e89 commit 136b481Copy full SHA for 136b481
.github/workflows/build.yaml
@@ -113,9 +113,12 @@ jobs:
113
with:
114
cmdline-tools-version: 11076708
115
packages: 'build-tools;34.0.0 ndk;26.0.10792818 tools platform-tools platforms;android-34 '
116
- - name: Install cargo ndk (Android)
+ - name: Install cargo-ndk and protobuf-compiler (Android)
117
if: ${{ matrix.os == 'android' }}
118
- run: cargo install cargo-ndk --force
+ run: |
119
+ sudo apt update
120
+ sudo apt install --yes --no-install-recommends protobuf-compiler
121
+ cargo install cargo-ndk --force
122
- name: Install musl libc (linux x86_64 | linux arm64)
123
if: ${{ contains(fromJSON('["x86_64", "arm64"]'), matrix.arch) && matrix.os == 'linux' }}
124
run: |
0 commit comments