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 bdc9ef4 commit 960b9fa
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
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 960b9fa

Please sign in to comment.