mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Minimize RUSTFLAGS churn to reduce some rebuilds
This commit is contained in:
parent
e8878f449f
commit
ed628471e7
1 changed files with 1 additions and 3 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -43,14 +43,12 @@ jobs:
|
|||
with:
|
||||
toolchain: ${{matrix.rust}}
|
||||
- name: Enable type layout randomization
|
||||
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
|
||||
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout\ --cfg=exhaustive >> $GITHUB_ENV
|
||||
if: matrix.rust == 'nightly'
|
||||
- run: cargo check --locked
|
||||
- run: cargo update
|
||||
- run: cargo check
|
||||
- run: cargo test
|
||||
env:
|
||||
RUSTFLAGS: ${{env.RUSTFLAGS}} ${{matrix.rust == 'nightly' && '--cfg exhaustive' || ''}}
|
||||
if: matrix.os == 'ubuntu' && matrix.rust == 'nightly'
|
||||
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs && diff tests/lib.expand.rs expand.rs
|
||||
if: startsWith(matrix.rust, 'nightly')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue