{
  "_class" : "hudson.model.FreeStyleBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "com.cloudbees.jenkins.GitHubPushCause",
          "shortDescription" : "Started by GitHub push by ti-chi-bot[bot]"
        },
        {
          "_class" : "com.cloudbees.jenkins.GitHubPushCause",
          "shortDescription" : "Started by GitHub push by ti-chi-bot[bot]"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "jenkins.metrics.impl.TimeInQueueAction",
      "blockedDurationMillis" : 0,
      "blockedTimeMillis" : 0,
      "buildableDurationMillis" : 21509,
      "buildableTimeMillis" : 21509,
      "buildingDurationMillis" : 40003,
      "executingTimeMillis" : 40003,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 6045,
      "waitingTimeMillis" : 6045
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1831,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
            "branch" : [
              {
                "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
            "branch" : [
              {
                "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
        "branch" : [
          {
            "SHA1" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
            "name" : "origin/main"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/PingCAP-QE/ci.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#1831",
  "duration" : 40003,
  "estimatedDuration" : 118973,
  "executor" : None,
  "fullDisplayName" : "seed #1831",
  "id" : "1831",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 1831,
  "queueId" : 3694443,
  "result" : "SUCCESS",
  "timestamp" : 1782892303474,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1831/",
  "builtOn" : "default-j8rv9",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "scripts/plugins/analyze-go-test-from-bazel-output.sh"
        ],
        "commitId" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
        "timestamp" : 1782892272000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "fix(plugins): fix flaky detection for SKIP-only tests and shard-scoped FAIL verification (FLA-214 PR2) (#4770)\u000a\u000a## Summary\u000a\u000aFix `parse_bazel_go_test_new_flaky_cases()` in\u000a`analyze-go-test-from-bazel-output.sh` to correctly handle SKIP-only\u000atests and multi-shard flaky detection.\u000a\u000a**Issue**:\u000a[FLA-214](mention://issue/fd2c10ca-c3e7-4bcc-8f23-bbc5164bd748)\u000a\u000a## Changes\u000a\u000aThree changes to `scripts/plugins/analyze-go-test-from-bazel-output.sh`:\u000a\u000a1. **Index regex**: Add `SKIP` to `((===|---) (RUN|PASS|FAIL|SKIP))` so\u000aSKIP lines are captured in the index file\u000a2. **Flaky detection grep**: Change from `=== RUN|--- PASS` to `===\u000aRUN|--- (PASS|SKIP)` so SKIP-only tests have count=2 (not falsely\u000aflagged)\u000a3. **Shard-scoped FAIL verification**: Before adding to `new_flaky`,\u000averify each candidate has `--- FAIL` in the **same shard section** (not\u000aglobally). Prevents regression from PR #4724 where global FAIL search\u000aover-filtered legitimate flaky tests.\u000a\u000a## Testing\u000a\u000a```\u000a--- TDD tests: flaky detection ---\u000aPASS: TestSplitRangeForTable not in new_flaky (skip_only.log)\u000aPASS: TestFlaky in new_flaky (flaky_two_shards.log)\u000aPASS: TestSkipOnly not in new_flaky (skip_and_flaky.log)\u000aPASS: TestFlaky in new_flaky (skip_and_flaky.log)\u000aAll TDD tests passed.\u000a``\"\u000a\u000a## Risk\u000a\u000aLow — targeted changes to a single function. Index regex change affects `parse_bazel_target_output_log` (line 46) but that function uses its own grep on the raw log, not the index file. Revert: single commit revert.\u000a\u000a---------\u000a\u000aSigned-off-by: wuhuizuo <wuhuizuo@126.com>\u000a",
        "date" : "2026-07-01 07:51:12 +0000",
        "id" : "9bb3e1c1a060e27c5db98ef6a60cea2d29350529",
        "msg" : "fix(plugins): fix flaky detection for SKIP-only tests and shard-scoped",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "scripts/plugins/analyze-go-test-from-bazel-output.sh"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}