Skip to content

Commit fda6b75

Browse files
committed
Fix libc++ restarter job.
A while ago, the test workflow was updated with a new preemption regex, however it was only applied to the test job, and not the job that's actually restarting the failed libc++ test runs. This fix should correct the issue and get the restarter working again.
1 parent 671caef commit fda6b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/libcxx-restart-preempted-jobs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
script: |
3535
const failure_regex = /Process completed with exit code 1./
36-
const preemption_regex = /The runner has received a shutdown signal/
36+
const preemption_regex = /(The runner has received a shutdown signal)|(The operation was canceled)/
3737
3838
const wf_run = context.payload.workflow_run
3939
core.notice(`Running on "${wf_run.display_title}" by @${wf_run.actor.login} (event: ${wf_run.event})\nWorkflow run URL: ${wf_run.html_url}`)

0 commit comments

Comments
 (0)