Skip to content

Commit

Permalink
Don't run combine_reports when both tests were skipped: use != as XOR…
Browse files Browse the repository at this point in the history
  • Loading branch information
markus-hinsche committed Jan 13, 2022
1 parent 3fdbd90 commit 8b67286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-model-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ jobs:
needs:
- model_regression_test_cpu
- model_regression_test_gpu
if: (needs.model_regression_test_cpu.result != 'skipped' || needs.model_regression_test_gpu.result != 'skipped') && always()
if: ((needs.model_regression_test_cpu.result != 'skipped') != (needs.model_regression_test_gpu.result != 'skipped')) && always()
outputs:
success_status: ${{ steps.set-success-status.outputs.success_status }}

Expand Down

0 comments on commit 8b67286

Please sign in to comment.