Skip to content

Commit

Permalink
Swap ordering in needs: to see if that affects grouping.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd committed Aug 24, 2022
1 parent d962d47 commit f1a6925
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ jobs:
echo "::set-output name=binaries-gcs-artifact::${BINARIES_GCS_ARTIFACT}"
test_tf_integrations:
needs: [should_run, build_tf_integrations, build_all]
needs: [should_run, build_all, build_tf_integrations]
if: needs.should_run.outputs.should-run == 'true'
runs-on:
# Pseudo-ternary hack and order matters. See comment at top of file.
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
"${BUILD_DIR}"
test_tf_integrations_gpu:
needs: [should_run, build_tf_integrations, build_all]
needs: [should_run, build_all, build_tf_integrations]
if: needs.should_run.outputs.should-run == 'true'
runs-on:
# Pseudo-ternary hack and order matters. See comment at top of file.
Expand Down Expand Up @@ -586,7 +586,7 @@ jobs:
"./build_tools/cmake/build_riscv.sh && tests/riscv32/smoke.sh"
riscv64:
needs: [should_run, build_all, build_all, build_tf_integrations]
needs: [should_run, build_all, build_tf_integrations]
if: needs.should_run.outputs.should-run == 'true'
runs-on:
# Pseudo-ternary hack and order matters. See comment at top of file.
Expand Down

0 comments on commit f1a6925

Please sign in to comment.