mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 13:27:37 +03:00
Consolidate CI test and build workflows
This commit is contained in:
parent
c2502d01d5
commit
e8878f449f
1 changed files with 2 additions and 14 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -17,20 +17,6 @@ jobs:
|
||||||
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
|
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master
|
||||||
|
|
||||||
test:
|
test:
|
||||||
name: Test
|
|
||||||
needs: pre_ci
|
|
||||||
if: needs.pre_ci.outputs.continue
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
timeout-minutes: 45
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: dtolnay/rust-toolchain@nightly
|
|
||||||
- name: Enable type layout randomization
|
|
||||||
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
|
|
||||||
- run: cargo run -- expand --manifest-path tests/Cargo.toml > expand.rs
|
|
||||||
- run: diff tests/lib.expand.rs expand.rs
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
|
name: ${{matrix.name || format('Rust {0}', matrix.rust)}}
|
||||||
needs: pre_ci
|
needs: pre_ci
|
||||||
if: needs.pre_ci.outputs.continue
|
if: needs.pre_ci.outputs.continue
|
||||||
|
@ -66,6 +52,8 @@ jobs:
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: ${{env.RUSTFLAGS}} ${{matrix.rust == 'nightly' && '--cfg exhaustive' || ''}}
|
RUSTFLAGS: ${{env.RUSTFLAGS}} ${{matrix.rust == 'nightly' && '--cfg exhaustive' || ''}}
|
||||||
if: matrix.os == 'ubuntu' && matrix.rust == 'nightly'
|
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')
|
||||||
|
|
||||||
clippy:
|
clippy:
|
||||||
name: Clippy
|
name: Clippy
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue