-
Notifications
You must be signed in to change notification settings - Fork 14.3k
Upstream libc++ buildbot restarter. #93582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
name: Restart Preempted Libc++ Workflow | ||
|
||
# The libc++ builders run on preemptable VMs, which can be shutdown at any time. | ||
# This workflow identifies when a workflow run was canceled due to the VM being preempted, | ||
# and restarts the workflow run. | ||
|
||
# We identify a canceled workflow run by checking the annotations of the check runs in the check suite, | ||
# which should contain the message "The runner has received a shutdown signal." | ||
|
||
# Note: If a job is both preempted and also contains a non-preemption failure, we do not restart the workflow. | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- "Build and Test libc\+\+" | ||
types: | ||
- failure | ||
- canceled | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
restart: | ||
if: github.repository_owner == 'llvm' | ||
name: "Restart Job" | ||
permissions: | ||
statuses: read | ||
checks: read | ||
actions: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Restart Job" | ||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea #v7.0.1 | ||
with: | ||
script: | | ||
const failure_regex = /Process completed with exit code 1./ | ||
const preemption_regex = /The runner has received a shutdown signal/ | ||
|
||
console.log('Listing check runs for suite') | ||
const check_suites = await github.rest.checks.listForSuite({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
check_suite_id: context.payload.workflow_run.check_suite_id | ||
}) | ||
|
||
check_run_ids = []; | ||
for (check_run of check_suites.data.check_runs) { | ||
console.log('Checking check run: ' + check_run.id); | ||
console.log(check_run); | ||
if (check_run.status != 'completed') { | ||
console.log('Check run was not completed. Skipping.'); | ||
continue; | ||
} | ||
if (check_run.conclusion != 'failure' && check_run.conclusion != 'cancelled') { | ||
console.log('Check run had conclusion: ' + check_run.conclusion + '. Skipping.'); | ||
continue; | ||
} | ||
check_run_ids.push(check_run.id); | ||
} | ||
|
||
has_preempted_job = false; | ||
|
||
for (check_run_id of check_run_ids) { | ||
console.log('Listing annotations for check run: ' + check_run_id); | ||
|
||
annotations = await github.rest.checks.listAnnotations({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
check_run_id: check_run_id | ||
}) | ||
|
||
console.log(annotations); | ||
for (annotation of annotations.data) { | ||
if (annotation.annotation_level != 'failure') { | ||
continue; | ||
} | ||
|
||
const preemption_match = annotation.message.match(preemption_regex); | ||
|
||
if (preemption_match != null) { | ||
console.log('Found preemption message: ' + annotation.message); | ||
has_preempted_job = true; | ||
} | ||
|
||
const failure_match = annotation.message.match(failure_regex); | ||
if (failure_match != null) { | ||
// We only want to restart the workflow if all of the failures were due to preemption. | ||
// We don't want to restart the workflow if there were other failures. | ||
console.log('Choosing not to rerun workflow because we found a non-preemption failure'); | ||
console.log('Failure message: ' + annotation.message); | ||
return; | ||
} | ||
} | ||
} | ||
|
||
if (!has_preempted_job) { | ||
console.log('No preempted jobs found. Not restarting workflow.'); | ||
return; | ||
} | ||
|
||
console.log("Restarted workflow: " + context.payload.workflow_run.id); | ||
await github.rest.actions.reRunWorkflowFailedJobs({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
run_id: context.payload.workflow_run.id | ||
}) | ||
|
||
|
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.