From fe843806ece40a19adca3a7c6366abfb6f8662bb Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Wed, 9 Jul 2025 21:45:54 +0000 Subject: [PATCH] ci(test): run tests on big endian with `--all-features` (#12167) Big endian tests were failing on CI. This is due to a strange combination of cargo features getting enabled in the tests, causing problems in linter crates, since #12122. I don't entirely understand how this was happening, but running the tests with `cross test --all-features` fixes it. In any case, we do want to run tests for all features on big endian. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a19577a4648b..b8e7d83955396 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,7 +106,7 @@ jobs: save-cache: ${{ github.ref_name == 'main' }} cache-key: s390x-unknown-linux-gnu tools: cross - - run: cross test --target s390x-unknown-linux-gnu + - run: cross test --all-features --target s390x-unknown-linux-gnu test-wasm32-wasip1-threads: name: Test wasm32-wasip1-threads