{
  "_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" : 25271,
      "buildableTimeMillis" : 25271,
      "buildingDurationMillis" : 45816,
      "executingTimeMillis" : 45816,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 8759,
      "waitingTimeMillis" : 8759
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1819,
          "buildResult" : null,
          "marked" : {
            "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
            "branch" : [
              {
                "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
            "branch" : [
              {
                "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
        "branch" : [
          {
            "SHA1" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
            "name" : "origin/main"
          }
        ]
      },
      "remoteUrls" : [
        "https://github.com/PingCAP-QE/ci.git"
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : false,
  "description" : null,
  "displayName" : "#1819",
  "duration" : 45816,
  "estimatedDuration" : 42534,
  "executor" : null,
  "fullDisplayName" : "seed #1819",
  "id" : "1819",
  "inProgress" : false,
  "keepLog" : false,
  "number" : 1819,
  "queueId" : 3694413,
  "result" : "SUCCESS",
  "timestamp" : 1782444973107,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1819/",
  "builtOn" : "default-jl0n4",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_mysql_connector_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_common_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_jdbc_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_integration_jdbc_test_next_gen/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_mysql_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_jdbc_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_ruby_orm_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_nodejs_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_common_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_mysql_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_common_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_mysql_test/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/pull_mysql_test_next_gen/pipeline.groovy",
          "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_python_orm_test/pipeline.groovy"
        ],
        "commitId" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
        "timestamp" : 1782444934000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "fix(pipelines/tidb-test): stash from within dir() blocks to fix unstash failures (#4750)\u000a\u000a## Problem\u000a\u000aPR #4716 refactored tidb-test pipelines to use stash/unstash for\u000aworkspace handoff. Two issues:\u000a\u000a1. **Double-nesting**: Stash created at workspace root (containing\u000a`tidb-test/` prefix), but unstash inside `dir('tidb-test')` caused files\u000ato land at `tidb-test/tidb-test/...`\u000a2. **`.git` conflict**: Stash included `.git/` from both ci repo and\u000atidb-test repo. When unstash ran on new agent pods (which already had ci\u000arepo's `.git/`), it caused `java.nio.file.AccessDeniedException` on\u000a`.git/objects/pack/` files.\u000a\u000a## Fix\u000a\u000aStash from **within** `dir()` blocks so paths are relative to that\u000adirectory:\u000a\u000a- `dir('tidb') { ...; stash includes: 'bin/**', name: 'tidb-bin' }` —\u000astashes only `tidb/bin/`\u000a- `dir('tidb-test') { ...; stash includes: '**/*', name:\u000a'tidb-test-workspace' }` — stashes tidb-test content\u000a- Test stage: unstash into matching `dir()` blocks\u000a\u000aThis avoids both the double-nesting and `.git` conflicts since each\u000astash only contains that repo's own files.\u000a\u000a## Cleanup\u000a\u000a- Removed `excludes: '**/.git'` (no longer needed)\u000a- Removed `cache(path: ./mysql_test)` blocks (replaced by stash/unstash)\u000a- Removed unused `TIDB_BIN_STASH_NAME` constant from pipelines that\u000adon't need separate tidb/bin stash\u000a\u000a## Affected pipelines (14)\u000a\u000aAll pipelines in `pipelines/pingcap-qe/tidb-test/latest/` except\u000a`ghpr_build` (no stash/unstash).\u000a",
        "date" : "2026-06-26 03:35:34 +0000",
        "id" : "c9807d6bb842e55278b0c6be241ecebb0585c291",
        "msg" : "fix(pipelines/tidb-test): stash from within dir() blocks to fix unstash",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_mysql_connector_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_ruby_orm_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_python_orm_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_common_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_integration_jdbc_test_next_gen/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_common_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_mysql_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_mysql_test_next_gen/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_jdbc_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_nodejs_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_mysql_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_jdbc_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_integration_common_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/ghpr_mysql_test/pipeline.groovy"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}