diff options
| author | bors <bors@rust-lang.org> | 2023-06-06 21:03:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-06-06 21:03:56 +0000 |
| commit | f3145dc1f1a6c62e7bb6c5e0fa3caf98e3f45842 (patch) | |
| tree | dd5656e04d4e2a449684bc74e970e6b0ee52bae1 | |
| parent | d42d55feaafa71e14521bbfe6e7011fbb41980f0 (diff) | |
| parent | ef095585756108e901af637993932e5be2a1fe28 (diff) | |
| download | rust-f3145dc1f1a6c62e7bb6c5e0fa3caf98e3f45842.tar.gz rust-f3145dc1f1a6c62e7bb6c5e0fa3caf98e3f45842.zip | |
Auto merge of #14994 - Veykril:ci-fix, r=Veykril
fix: Fix ci never running on nightly when proc-macro things change Was wondering why this wasn't running on the subtree sync ...
| -rw-r--r-- | .github/workflows/ci.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 622da105fdd..92e353ba8f3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,7 @@ jobs: pull-requests: read outputs: typescript: ${{ steps.filter.outputs.typescript }} + proc_macros: ${{ steps.filter.outputs.proc_macros }} steps: - uses: actions/checkout@v3 - uses: dorny/paths-filter@4067d885736b84de7c414f582ac45897079b0a78 @@ -45,8 +46,8 @@ jobs: runs-on: ${{ matrix.os }} env: CC: deny_c - RUST_CHANNEL: "${{ needs.changes.outputs.proc_macros == 'true' && 'nightly' || 'stable'}}" - USE_SYSROOT_ABI: "${{ needs.changes.outputs.proc_macros == 'true' && '--features sysroot-abi' || ''}}" + RUST_CHANNEL: "${{ needs.changes.outputs.proc_macros == 'true' && 'nightly' || 'stable' }}" + USE_SYSROOT_ABI: "${{ needs.changes.outputs.proc_macros == 'true' && '--features sysroot-abi' || '' }}" strategy: fail-fast: false |
