@@ -32,10 +32,10 @@ jobs:
32
32
# os: ubuntu-24.04,
33
33
# test: false,
34
34
# }
35
- - { target: arm-linux-androideabi, os: ubuntu-24.04, test: false }
36
- - { target: aarch64-linux-android, os: ubuntu-24.04, test: false }
37
- - { target: armv7-linux-androideabi, os: ubuntu-24.04, test: false }
38
- - { target: x86_64-linux-android, os: ubuntu-24.04, test: false }
35
+ - { target: arm-linux-androideabi, os: ubuntu-24.04, test: true }
36
+ - { target: aarch64-linux-android, os: ubuntu-24.04, test: true }
37
+ - { target: armv7-linux-androideabi, os: ubuntu-24.04, test: true }
38
+ - { target: x86_64-linux-android, os: ubuntu-24.04, test: true }
39
39
features :
40
40
[
41
41
" " ,
@@ -61,12 +61,11 @@ jobs:
61
61
sudo apt install gcc libxxf86vm-dev libosmesa6-dev libgles2-mesa-dev xvfb weston -y
62
62
- name : Install rust
63
63
id : toolchain
64
- uses : dtolnay/rust-toolchain@stable
64
+ uses : dtolnay/rust-toolchain@1.80.1
65
65
with :
66
66
targets : ${{ matrix.platform.target }}
67
67
- name : Build
68
68
run : |
69
- rustup target add ${{ matrix.platform.target }}
70
69
cargo build --features "${{ matrix.features }}" --target ${{ matrix.platform.target }}
71
70
- name : Test
72
71
if : ${{ matrix.platform.test && startsWith(matrix.platform.os, 'ubuntu') && !contains(matrix.platform.target, 'android') }}
0 commit comments