Skip to content

Commit

Permalink
Limit enabling zstd tests for nightly rustc to Linux (where rust-lld …
Browse files Browse the repository at this point in the history
…is shipped).
  • Loading branch information
khuey committed Aug 24, 2024
1 parent d8bdecd commit efc0883
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ jobs:
env:
RUSTFLAGS: "-C link-arg=-Wl,--compress-debug-sections=zlib"
- run: cargo test
if: contains(matrix.os, 'ubuntu-24.04') || contains(matrix.rust, 'nightly')
if: contains(matrix.os, 'ubuntu-24.04') ||
(contains(matrix.os, 'ubuntu') && contains(matrix.rust, 'nightly'))
env:
RUSTFLAGS: "-C link-arg=-Wl,--compress-debug-sections=zstd"

Expand Down

0 comments on commit efc0883

Please sign in to comment.