Skip to content

Commit

Permalink
CI: Use release mode for all CPU coverage tests.
Browse files Browse the repository at this point in the history
This enables more extensive testing that's disabled in debug mode
because it is too slow.
  • Loading branch information
briansmith committed Jan 17, 2025
1 parent f75d80c commit 29db729
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ jobs:

- features: --features=unstable-testing-arm-no-hw,std
target: aarch64-unknown-linux-gnu
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

Expand All @@ -645,7 +645,7 @@ jobs:

- features: --features=unstable-testing-arm-no-neon,std
target: armv7-unknown-linux-gnueabihf
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

Expand Down Expand Up @@ -677,84 +677,84 @@ jobs:
- target: i686-unknown-linux-gnu
cpu_model: Conroe-v1
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: Conroe-v1
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: i686-unknown-linux-gnu
cpu_model: Denverton-v2
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: Denverton-v2
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: i686-unknown-linux-gnu
cpu_model: Haswell
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: Haswell
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: i686-unknown-linux-gnu
cpu_model: Nehalem
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: Nehalem
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: i686-unknown-linux-gnu
cpu_model: SandyBridge
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: SandyBridge
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: i686-unknown-linux-gnu
cpu_model: Westmere
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

- target: x86_64-unknown-linux-gnu
cpu_model: Westmere
features: --features=std
mode: # debug
mode: --release
rust_channel: nightly
host_os: ubuntu-22.04

Expand Down

0 comments on commit 29db729

Please sign in to comment.