Skip to content

Commit 17e60ab

Browse files
committed
ci: enable tests for some targets
1 parent 6bbf9a0 commit 17e60ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/target.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ os = "ubuntu-latest"
172172
target = "loongarch64-unknown-linux-gnu"
173173
release-name = "loongarch64-linux"
174174
tool = "cross"
175-
skip-test = true
175+
#skip-test = true
176176
extra-args = "--no-default-features --features ring"
177177

178178
# ==================== MIPS Targets ====================
@@ -183,12 +183,12 @@ target = "mips-unknown-linux-musl"
183183
tool = "cross"
184184
extra-args = "--no-default-features --features ring"
185185
build-std = true
186-
skip-test = true
186+
#skip-test = true
187187

188188
# MIPSEL (little-endian) Linux (MUSL - statically linked)
189189
[[target]]
190190
target = "mipsel-unknown-linux-musl"
191191
tool = "cross"
192192
extra-args = "--no-default-features --features ring"
193193
build-std = true
194-
skip-test = true
194+
#skip-test = true

.github/workflows/rust-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
with:
150150
tool: ${{ matrix.tool }}
151151
command: test
152-
args: --all --target ${{ matrix.target }} ${{ matrix.extra-args }} -- --nocapture
152+
args: --all --target ${{ matrix.target }} ${{ matrix.build-std && '-Z build-std=std,panic_abort' || '' }} ${{ matrix.extra-args }} -- --nocapture
153153
env:
154154
CROSS_CONTAINER_OPTS: "--network host"
155155
RUSTFLAGS: ${{ matrix.rustflags }} ${{ inputs.rustflags }}

0 commit comments

Comments
 (0)