Skip to content

Commit 5aadf2d

Browse files
committed
Remove: Android target
Failing due to not locating libunwind This is related to: cross-rs/cross#1128 There are workarounds here: rust-lang/rust#85806 (comment) Someone might want to try implement it later For now I'm pulling the android compiles
1 parent 2ee487e commit 5aadf2d

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/cross.yml

+1-14
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
strategy:
1010
matrix:
1111
target: [
12-
aarch64-linux-android,
1312
aarch64-unknown-linux-gnu,
1413
aarch64-unknown-linux-musl,
1514
arm-unknown-linux-gnueabi,
@@ -23,21 +22,9 @@ jobs:
2322
steps:
2423
- uses: actions/checkout@v3
2524

26-
- name: Setup Cross Configuration
27-
shell: bash
28-
run: echo -e "[build]\nbuild-std =true" > Cross.toml
29-
30-
- name: Install Toolchain
31-
uses: actions-rs/toolchain@v1
32-
with:
33-
profile: minimal
34-
toolchain: nightly
35-
target: ${{ matrix.target }}
36-
override: true
37-
3825
- name: Cross Compile Tests ${{ matrix.target }} ${{ matrix.feature }} ${{ matrix.opt }}
3926
uses: actions-rs/cargo@v1.0.1
4027
with:
4128
use-cross: true
4229
command: test
43-
args: --target ${{ matrix.target }} --features "std ${{ matrix.feature }} ${{ matrix.opt }}"
30+
args: --target ${{ matrix.target }} --features "${{ matrix.feature }} ${{ matrix.opt }}"

0 commit comments

Comments
 (0)