Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check how code coverage handles cfg_if! #2296

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,6 @@ jobs:
- arm-unknown-linux-gnueabi
- armv7-linux-androideabi
- armv7-unknown-linux-musleabihf
- i686-pc-windows-msvc
- i686-unknown-linux-gnu
- i686-unknown-linux-musl
- riscv64gc-unknown-linux-gnu
- wasm32-wasi
- wasm32-wasip1
Expand Down Expand Up @@ -272,15 +269,6 @@ jobs:
- target: armv7-unknown-linux-musleabihf
host_os: ubuntu-22.04

- target: i686-pc-windows-msvc
host_os: windows-latest

- target: i686-unknown-linux-gnu
host_os: ubuntu-22.04

- target: i686-unknown-linux-musl
host_os: ubuntu-22.04

- target: mips-unknown-linux-gnu
mode: --release
rust_channel: 1.71.0 # No prebuilt toolchain for later versions.
Expand Down Expand Up @@ -448,7 +436,6 @@ jobs:

target:
- aarch64-unknown-linux-musl
- i686-pc-windows-msvc
- x86_64-unknown-linux-gnu

mode:
Expand All @@ -464,9 +451,6 @@ jobs:
- target: aarch64-unknown-linux-musl
host_os: ubuntu-22.04

- target: i686-pc-windows-msvc
host_os: windows-latest

- target: x86_64-unknown-linux-gnu
host_os: ubuntu-22.04

Expand Down Expand Up @@ -649,16 +633,6 @@ jobs:
rust_channel: nightly
host_os: ubuntu-24.04

# TODO: Use the -musl target after
# https://github.com/rust-lang/rust/issues/79556 and
# https://github.com/rust-lang/rust/issues/79555 are fixed.
- target: i686-unknown-linux-gnu
cpu_model: # default
features: --features=std
mode: # debug
rust_channel: nightly
host_os: ubuntu-24.04

- target: powerpc-unknown-linux-gnu
host_os: ubuntu-24.04

Expand All @@ -674,83 +648,41 @@ jobs:
- target: x86_64-apple-darwin
host_os: macos-13

- target: i686-unknown-linux-gnu
cpu_model: Conroe-v1
features: --features=std
mode: --release
rust_channel: nightly
host_os: ubuntu-24.04

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

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

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

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

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

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

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

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

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

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

- target: x86_64-unknown-linux-gnu
cpu_model: Westmere
features: --features=std
Expand Down