Skip to content

Commit b801b56

Browse files
Update pr_push.yml
1 parent eb06e3b commit b801b56

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/pr_push.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,36 +20,36 @@ permissions:
2020

2121
jobs:
2222
CodeChecks:
23-
if: ${{ ENABLE_TESTING_JOBS }}
23+
if: ${{ env.ENABLE_TESTING_JOBS }}
2424
uses: ./.github/workflows/reusable_checks.yml
2525
FastBuild:
26-
if: ${{ ENABLE_TESTING_JOBS }}
26+
if: ${{ env.ENABLE_TESTING_JOBS }}
2727
name: Fast builds
2828
needs: [CodeChecks]
2929
uses: ./.github/workflows/reusable_fast.yml
3030
Build:
31-
if: ${{ ENABLE_TESTING_JOBS }}
31+
if: ${{ env.ENABLE_TESTING_JOBS }}
3232
name: Basic builds
3333
needs: [FastBuild]
3434
uses: ./.github/workflows/reusable_basic.yml
3535
DevDax:
36-
if: ${{ ENABLE_TESTING_JOBS }}
36+
if: ${{ env.ENABLE_TESTING_JOBS }}
3737
needs: [FastBuild]
3838
uses: ./.github/workflows/reusable_dax.yml
3939
MultiNuma:
40-
if: ${{ ENABLE_TESTING_JOBS }}
40+
if: ${{ env.ENABLE_TESTING_JOBS }}
4141
needs: [FastBuild]
4242
uses: ./.github/workflows/reusable_multi_numa.yml
4343
L0:
44-
if: ${{ ENABLE_TESTING_JOBS }}
44+
if: ${{ env.ENABLE_TESTING_JOBS }}
4545
needs: [Build]
4646
uses: ./.github/workflows/reusable_gpu.yml
4747
with:
4848
provider: "LEVEL_ZERO"
4949
runner: "L0"
5050
shared_lib: "['ON']"
5151
L0-BMG:
52-
if: ${{ ENABLE_TESTING_JOBS }}
52+
if: ${{ env.ENABLE_TESTING_JOBS }}
5353
needs: [Build]
5454
uses: ./.github/workflows/reusable_gpu.yml
5555
with:
@@ -58,46 +58,46 @@ jobs:
5858
shared_lib: "['ON']"
5959
os: "['Ubuntu']"
6060
CUDA:
61-
if: ${{ ENABLE_TESTING_JOBS }}
61+
if: ${{ env.ENABLE_TESTING_JOBS }}
6262
needs: [Build]
6363
uses: ./.github/workflows/reusable_gpu.yml
6464
with:
6565
provider: "CUDA"
6666
runner: "CUDA"
6767
shared_lib: "['ON']"
6868
Sanitizers:
69-
if: ${{ ENABLE_TESTING_JOBS }}
69+
if: ${{ env.ENABLE_TESTING_JOBS }}
7070
needs: [FastBuild]
7171
uses: ./.github/workflows/reusable_sanitizers.yml
7272
QEMU:
73-
if: ${{ ENABLE_TESTING_JOBS }}
73+
if: ${{ env.ENABLE_TESTING_JOBS }}
7474
needs: [FastBuild]
7575
uses: ./.github/workflows/reusable_qemu.yml
7676
with:
7777
short_run: true
7878
ProxyLib:
79-
if: ${{ ENABLE_TESTING_JOBS }}
79+
if: ${{ env.ENABLE_TESTING_JOBS }}
8080
needs: [Build]
8181
uses: ./.github/workflows/reusable_proxy_lib.yml
8282
Valgrind:
83-
if: ${{ ENABLE_TESTING_JOBS }}
83+
if: ${{ env.ENABLE_TESTING_JOBS }}
8484
needs: [Build]
8585
uses: ./.github/workflows/reusable_valgrind.yml
8686
Coverage:
8787

8888
# total coverage (on upstream only)
89-
if: ${{ ENABLE_TESTING_JOBS }}
89+
if: ${{ env.ENABLE_TESTING_JOBS }}
9090
needs: [Build, DevDax, L0, CUDA, MultiNuma, QEMU, ProxyLib]
9191
uses: ./.github/workflows/reusable_coverage.yml
9292
secrets: inherit
9393
with:
9494
trigger: "${{github.event_name}}"
9595
Coverage_partial:
96-
if: ${{ ENABLE_TESTING_JOBS }}
96+
if: ${{ env.ENABLE_TESTING_JOBS }}
9797
needs: [Build, QEMU, ProxyLib]
9898
uses: ./.github/workflows/reusable_coverage.yml
9999
CodeQL:
100-
if: ${{ ENABLE_TESTING_JOBS }}
100+
if: ${{ env.ENABLE_TESTING_JOBS }}
101101
needs: [Build]
102102
permissions:
103103
contents: read

0 commit comments

Comments
 (0)