Skip to content

Commit 136b481

Browse files
authored
Fix: GitHub CI
1 parent 8927e89 commit 136b481

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,12 @@ jobs:
113113
with:
114114
cmdline-tools-version: 11076708
115115
packages: 'build-tools;34.0.0 ndk;26.0.10792818 tools platform-tools platforms;android-34 '
116-
- name: Install cargo ndk (Android)
116+
- name: Install cargo-ndk and protobuf-compiler (Android)
117117
if: ${{ matrix.os == 'android' }}
118-
run: cargo install cargo-ndk --force
118+
run: |
119+
sudo apt update
120+
sudo apt install --yes --no-install-recommends protobuf-compiler
121+
cargo install cargo-ndk --force
119122
- name: Install musl libc (linux x86_64 | linux arm64)
120123
if: ${{ contains(fromJSON('["x86_64", "arm64"]'), matrix.arch) && matrix.os == 'linux' }}
121124
run: |

0 commit comments

Comments
 (0)