actions: install rust targets
This commit is contained in:
parent
78a06a0430
commit
2b73be1995
1 changed files with 8 additions and 0 deletions
8
.github/workflows/android.yml
vendored
8
.github/workflows/android.yml
vendored
|
@ -13,6 +13,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Install ninja-build
|
- name: Install ninja-build
|
||||||
run: sudo apt-get install -y ninja-build
|
run: sudo apt-get install -y ninja-build
|
||||||
|
- name: Setup arm rust target
|
||||||
|
run: rustup target add armv7-linux-androideabi
|
||||||
|
- name: Setup x86 rust target
|
||||||
|
run: rustup target add i686-linux-android
|
||||||
|
- name: Setup arm64 rust target
|
||||||
|
run: rustup target add aarch64-linux-android
|
||||||
|
- name: Setup x86_64 rust target
|
||||||
|
run: rustup target add x86_64-linux-android
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Clone submodules
|
- name: Clone submodules
|
||||||
|
|
Loading…
Reference in a new issue