Skip to content

Commit 8f0c759

Browse files
committed
fixed testing harness: removed android and windows, and panic=abort (android we will have to do nightly-only -C panic=abort -Z panic_abort_tests, windows for some reason can't find dll)
1 parent 29db82b commit 8f0c759

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

.github/workflows/common.yml

-10
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,11 @@ jobs:
9090
matrix:
9191
target:
9292
# 64-bit
93-
- triple: x86_64-linux-android
94-
caps: X86_64_LINUX_ANDROID
95-
- triple: x86_64-pc-windows-gnu
96-
caps: X86_64_PC_WINDOWS_GNU
9793
- triple: x86_64-unknown-linux-gnu
9894
caps: X86_64_UNKNOWN_LINUX_GNU
9995
- triple: x86_64-unknown-linux-musl
10096
caps: X86_64_UNKNOWN_LINUX_MUSL
10197
# 32-bit
102-
- triple: i686-linux-android
103-
caps: I686_LINUX_ANDROID
104-
- triple: i686-pc-windows-gnu
105-
caps: I686_PC_WINDOWS_GNU
10698
- triple: i686-unknown-linux-gnu
10799
caps: I686_UNKNOWN_LINUX_GNU
108100
- triple: i586-unknown-linux-gnu
@@ -119,8 +111,6 @@ jobs:
119111
fail-fast: false
120112
matrix:
121113
target:
122-
- triple: aarch64-linux-android
123-
caps: AARCH64_LINUX_ANDROID
124114
- triple: aarch64-unknown-linux-gnu
125115
caps: AARCH64_UNKNOWN_LINUX_GNU
126116
- triple: aarch64-unknown-linux-musl

.github/workflows/runtest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v3
2222

23-
- run: ${{ format('echo "{0} -C panic=abort" >> $GITHUB_ENV', inputs.env-vars) }}
23+
- run: ${{ format('echo "{0}" >> $GITHUB_ENV', inputs.env-vars) }}
2424

2525
- name: Install Rust
2626
uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)