Skip to content

Commit d983753

Browse files
committed
ci: shorten job name to test-rust-gpu
1 parent b27a0f7 commit d983753

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Run a full build
3737
run: cargo xtask test-build
3838

39-
test-rust-gpu-releases:
39+
test-rust-gpu:
4040
strategy:
4141
fail-fast: false
4242
matrix:
@@ -117,15 +117,15 @@ jobs:
117117
# to update the branch protection rules when the test matrix changes
118118
test_success:
119119
runs-on: ubuntu-24.04
120-
needs: [test-os, test-rust-gpu-releases, lint]
120+
needs: [test-os, test-rust-gpu, lint]
121121
# Hack for buggy GitHub Actions behavior with skipped checks: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks
122122
if: ${{ always() }}
123123
steps:
124124
# Another hack is to actually check the status of the dependencies or else it'll fall through
125125
- run: |
126126
echo "Checking statuses..."
127127
[[ "${{ needs.test-os.result }}" == "success" ]] || exit 1
128-
[[ "${{ needs.test-rust-gpu-releases.result }}" == "success" ]] || exit 1
128+
[[ "${{ needs.test-rust-gpu.result }}" == "success" ]] || exit 1
129129
[[ "${{ needs.lint.result }}" == "success" ]] || exit 1
130130
131131
defaults:

0 commit comments

Comments
 (0)