Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ jobs:
rustc: nightly
allow_failure: true
extra_args: --features=unstable
- os: ubuntu-22.04
rustc: "1.75.0"
extra_desc: dist-server
extra_args: --no-default-features --features=dist-tests test_dist_ -- --test-threads 1
- os: macos-13
rustc: nightly
# Disable on Windows for now as it fails with:
Expand Down Expand Up @@ -309,6 +313,12 @@ jobs:
- name: "`grcov` ~ install"
run: cargo install grcov

- name: Create config for testing
run: |
mkdir -p .cargo
echo '[env]
LLVM_PROFILE_FILE = { value = "target/debug/coverage/default-%p-%8m.profraw", relative = true }' >> .cargo/config.toml

- name: Execute tests
run: cargo test --no-fail-fast --locked --all-targets ${{ matrix.extra_args }}
env:
Expand Down
Loading