Skip to content

Commit 56983a6

Browse files
committed
.github: Moved if statements after runs-on, because that's what works?
1 parent adb309e commit 56983a6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/chart-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
3131
chart-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
3433
runs-on: ubuntu-latest
34+
if: steps.activity.outputs.is_active == 'true'
3535
# runs-on: [self-hosted, linux]
3636
strategy:
3737
matrix:

.github/workflows/fingerprint-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
3434
fingerprint-tests:
3535
needs: activity-check
36-
if: steps.activity.outputs.is_active == 'true'
3736
runs-on: ubuntu-latest
37+
if: steps.activity.outputs.is_active == 'true'
3838
strategy:
3939
matrix:
4040
mode: ["debug", "release"]

.github/workflows/module-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
3131
module-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
3433
runs-on: ubuntu-latest
34+
if: steps.activity.outputs.is_active == 'true'
3535
strategy:
3636
matrix:
3737
# TODO: add debug/release mode when the runtest scripts can switch between

.github/workflows/other-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
3131
other-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
3433
runs-on: ubuntu-latest
34+
if: steps.activity.outputs.is_active == 'true'
3535
strategy:
3636
matrix:
3737
# TODO: add debug/release mode when the runtest scripts can switch between

.github/workflows/statistical-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
3131
statistical-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
3433
runs-on: ubuntu-latest
34+
if: steps.activity.outputs.is_active == 'true'
3535
# runs-on: [self-hosted, linux]
3636
strategy:
3737
matrix:

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
3131
unit-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
3433
runs-on: ubuntu-latest
34+
if: steps.activity.outputs.is_active == 'true'
3535
strategy:
3636
matrix:
3737
# TODO: add debug/release mode when the runtest scripts can switch between

.github/workflows/validation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
validation-tests:
3232
needs: activity-check
33-
if: steps.activity.outputs.is_active == 'true'
33+
if: needs.activity-check.outputs.is_active == 'true'
3434
runs-on: ubuntu-latest
3535
# runs-on: [self-hosted, linux]
3636
strategy:

0 commit comments

Comments
 (0)