Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jun 15, 2024
1 parent 4b3d266 commit 1606934
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ jobs:
needs: [DevTests, LiveServices, BuildTests, ExampleDataCache, ExampleDataTests]
steps:
- name: SetEnvironmentVariable
run: echo "any_failures=${{ (needs.DevTests.result == 'failure') || (needs.LiveServices.result == 'failure') || (needs.BuildTests.result == 'failure') || (needs.ExampleDataCache.result == 'failure') || (needs.ExampleDataTests.result == 'failure') }}" >> "$GITHUB_ENV"
run: echo "ANY_FAILURES=${{ (needs.DevTests.result == 'failure') || (needs.LiveServices.result == 'failure') || (needs.BuildTests.result == 'failure') || (needs.ExampleDataCache.result == 'failure') || (needs.ExampleDataTests.result == 'failure') }}" >> "$GITHUB_ENV"

NotifyOnAnyFailure:
runs-on: ubuntu-latest
needs: [DevTests, LiveServices, BuildTests, ExampleDataCache, ExampleDataTests]
# If condition needs 'always' to trigger at all
if: always() && any_failures
if: always() && env.ANY_FAILURES
steps:
- name: Printout which failed
run: |
Expand Down

0 comments on commit 1606934

Please sign in to comment.