Revert "ci: gate CI workflow on source being changed"
This reverts commit 09f7fc3cff
.
This commit is contained in:
parent
495d7e8acd
commit
ae381fcc01
|
@ -30,7 +30,6 @@ jobs:
|
|||
|
||||
Stable:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Test - stable toolchain
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -52,7 +51,6 @@ jobs:
|
|||
|
||||
Beta:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Test - beta toolchain
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -73,7 +71,6 @@ jobs:
|
|||
|
||||
Nightly:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Test - nightly toolchain
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -98,7 +95,6 @@ jobs:
|
|||
|
||||
MSRV:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Test - 1.56.1 toolchain
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -120,8 +116,6 @@ jobs:
|
|||
run: ./contrib/run_task.sh ${{ matrix.crate }} ${{ matrix.task }}
|
||||
|
||||
Arch32bit:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Test 32-bit version
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -139,9 +133,8 @@ jobs:
|
|||
run: cargo test --target i686-unknown-linux-gnu
|
||||
|
||||
Cross:
|
||||
needs: Prepare
|
||||
if: ${{ !github.event.act }} && needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Cross test
|
||||
if: ${{ !github.event.act }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Crate
|
||||
|
@ -157,7 +150,6 @@ jobs:
|
|||
|
||||
Embedded:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
RUSTFLAGS: "-C link-arg=-Tlink.x"
|
||||
|
@ -183,7 +175,6 @@ jobs:
|
|||
|
||||
ASAN:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Address sanitizer # hashes crate only.
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -206,7 +197,6 @@ jobs:
|
|||
|
||||
WASM:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: WebAssembly Build # hashes crate only.
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -225,7 +215,6 @@ jobs:
|
|||
|
||||
Schemars:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
name: Schemars
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
|
@ -243,8 +232,6 @@ jobs:
|
|||
run: ./contrib/run_task.sh ${{ matrix.crate }} ${{ matrix.task }}
|
||||
|
||||
Kani:
|
||||
needs: Prepare
|
||||
if: needs.Prepare.outputs.pr_changed_source == 'true'
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- name: 'Checkout your code.'
|
||||
|
|
Loading…
Reference in New Issue