Skip to content

Commit

Permalink
.github: Moved if statements after runs-on, because that's what works?
Browse files Browse the repository at this point in the history
  • Loading branch information
levy committed May 26, 2023
1 parent adb309e commit 56983a6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chart-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
chart-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
# runs-on: [self-hosted, linux]
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fingerprint-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
fingerprint-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
strategy:
matrix:
mode: ["debug", "release"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/module-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
module-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/other-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
other-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statistical-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
statistical-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
# runs-on: [self-hosted, linux]
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
unit-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
runs-on: ubuntu-latest
if: steps.activity.outputs.is_active == 'true'
strategy:
matrix:
# TODO: add debug/release mode when the runtest scripts can switch between
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
validation-tests:
needs: activity-check
if: steps.activity.outputs.is_active == 'true'
if: needs.activity-check.outputs.is_active == 'true'
runs-on: ubuntu-latest
# runs-on: [self-hosted, linux]
strategy:
Expand Down

0 comments on commit 56983a6

Please sign in to comment.