ci(gfx11): temporarily disable gfx1151 hardware test (runner offline) - #65
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The
linux-gfx1151-gpu-rocmself-hosted runner is currently offline, so thetest-gfxjob sitsqueuedindefinitely and blockscreate-release— the nightly can build but never publishes. This temporarily disables the hardware test so releases flow again.Changes
test-gfx: gated off viaif: false && ...(job body kept intact so re-enabling is a one-line revert).create-release: droppedtest-gfxfromneedsand removed theneeds.test-gfx.result == 'success'gate. Still requiresbuild-ubuntusuccess +workflow_dispatch+create_release=true, so push/PR still never release.Revert plan
When the gfx1151 runner is back online, restore:
test-gfxif: needs.build-ubuntu.result == 'success'create-releaseneeds: [build-ubuntu, test-gfx]+ theneeds.test-gfx.result == 'success'lineBoth spots carry TODO comments pointing at each other.
Context
Three nightly dispatches (build-ubuntu green) are stuck queued on the missing runner right now; this unblocks them / future nightlies from publishing. Correctness of the multiarch package is still validated at build time; only the on-device inference smoke test is paused.
Test plan
create_release=trueand confirm: build succeeds,test-gfxis skipped,create-releaseruns and publishes.