mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-22 05:22:53 +01:00
Consider CI Completion Gate flaky and bump allowed maximum
This commit is contained in:
@@ -10,7 +10,8 @@ const CONSIDERED_STEP_PREFIXES = [
|
||||
const CONSIDERED_JOBS = [
|
||||
"Windows Live Tests",
|
||||
"Linux Live Tests",
|
||||
"Build .deb Package"
|
||||
"Build .deb Package",
|
||||
"CI Completion Gate"
|
||||
];
|
||||
|
||||
async function getFailedJobsForRun(github, context, workflowRunId, runAttempt) {
|
||||
@@ -38,7 +39,7 @@ export async function rerunFlakyTests({ github, context }) {
|
||||
context.payload.workflow_run.run_attempt
|
||||
);
|
||||
|
||||
if (failingJobs.length > 3) {
|
||||
if (failingJobs.length > 4) {
|
||||
console.log("Many jobs failing. PROBABLY not flaky, Will not re-run.");
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user