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

CI: Use stable channel for code coverage measurement. #2232

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
13 changes: 1 addition & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -611,9 +611,8 @@ jobs:
mode:
- # debug

# Coverage collection is Nightly-only
rust_channel:
- nightly
- stable

# TODO: targets
include:
Expand All @@ -629,7 +628,6 @@ jobs:
- features: --features=unstable-testing-arm-no-hw,std
target: aarch64-unknown-linux-gnu
mode: # debug
rust_channel: nightly
host_os: ubuntu-22.04

- target: arm-unknown-linux-gnueabi
Expand All @@ -641,7 +639,6 @@ jobs:
- features: --features=unstable-testing-arm-no-neon,std
target: armv7-unknown-linux-gnueabihf
mode: # debug
rust_channel: nightly
host_os: ubuntu-22.04

# TODO: Use the -musl target after
Expand All @@ -651,14 +648,12 @@ jobs:
cpu_model: # default
features: --features=std
mode: # debug
rust_channel: nightly
host_os: ubuntu-22.04

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

- target: powerpc-unknown-linux-gnu
Expand All @@ -683,42 +678,36 @@ jobs:
cpu_model: Conroe-v1
features: --features=std
mode: # debug
rust_channel: nightly
host_os: ubuntu-22.04

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

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

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

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

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

- target: x86_64-unknown-linux-musl
Expand Down
Loading