{
  "_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" : 20053,
      "buildableTimeMillis" : 20053,
      "buildingDurationMillis" : 47247,
      "executingTimeMillis" : 47247,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 6505,
      "waitingTimeMillis" : 6505
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1818,
          "buildResult" : null,
          "marked" : {
            "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
            "branch" : [
              {
                "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
            "branch" : [
              {
                "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
        "branch" : [
          {
            "SHA1" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
            "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" : "#1818",
  "duration" : 47247,
  "estimatedDuration" : 42534,
  "executor" : null,
  "fullDisplayName" : "seed #1818",
  "id" : "1818",
  "inProgress" : false,
  "keepLog" : false,
  "number" : 1818,
  "queueId" : 3694412,
  "result" : "SUCCESS",
  "timestamp" : 1782440182795,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1818/",
  "builtOn" : "default-mfg8k",
  "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" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
        "timestamp" : 1782440152000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "fix(pipelines/tidb-test): move unstash outside dir() to fix double-nesting (#4749)\u000a\u000a## Problem\u000a\u000aRefactored all 15\u000a`pipelines/pingcap-qe/tidb-test/latest/*/pipeline.groovy` files to use\u000astash/unstash for workspace handoff between the `Checkout & Prepare`\u000astage and parallel Test stages.\u000a\u000aHowever, the stash is created at the **workspace root** (outside any\u000a`dir()` block), so it contains paths with the `tidb-test/` prefix (e.g.,\u000a`tidb-test/mysql_test/test.sh`). In the Test stage, the `unstash` was\u000aplaced **inside** `dir('tidb-test')` or `dir(REFS.repo)`, causing files\u000ato be extracted to a double-nested path like\u000a`tidb-test/tidb-test/mysql_test/test.sh`.\u000a\u000aThis results in `./test.sh: No such file or directory` (exit code 127)\u000afor all parallel matrix branches.\u000a\u000a**Failing job**:\u000ahttps://prow.tidb.net/jenkins/job/pingcap-qe/job/tidb-test/job/ghpr_mysql_test/12\u000a\u000a## Fix\u000a\u000aMove `unstash name: WORKSPACE_STASH_NAME` outside the `dir()` wrapper in\u000athe Test stage, so files are extracted at the workspace root where the\u000astash paths naturally resolve to the correct locations.\u000a\u000a## Affected pipelines (14 of 15)\u000a\u000a| Pipeline | Pattern |\u000a|---|---|\u000a| `ghpr_mysql_test` | `unstash` out of `dir('tidb-test')` |\u000a| `ghpr_common_test` | same |\u000a| `ghpr_integration_common_test` | same |\u000a| `ghpr_integration_jdbc_test` | same |\u000a| `ghpr_integration_mysql_test` | same (+ merged nested\u000a`dir('mysql_test')`) |\u000a| `ghpr_integration_nodejs_test` | same |\u000a| `ghpr_integration_python_orm_test` | same |\u000a| `pull_tiproxy_common_test` | same |\u000a| `pull_tiproxy_jdbc_test` | same |\u000a| `pull_tiproxy_mysql_connector_test` | same |\u000a| `pull_tiproxy_mysql_test` | same |\u000a| `pull_tiproxy_ruby_orm_test` | same |\u000a| `pull_integration_jdbc_test_next_gen` | `unstash` out of\u000a`dir(REFS.repo)` |\u000a| `pull_mysql_test_next_gen` | same |\u000a\u000a`ghpr_build` is not affected (no stash/unstash pattern).\u000a",
        "date" : "2026-06-26 02:15:52 +0000",
        "id" : "ab63d9ffd61aa215b5bf599c3ede32ddd1ea075f",
        "msg" : "fix(pipelines/tidb-test): move unstash outside dir() to fix",
        "paths" : [
          {
            "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/ghpr_integration_mysql_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/pull_tiproxy_common_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_mysql_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_mysql_connector_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_common_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_tiproxy_mysql_test/pipeline.groovy"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/pingcap-qe/tidb-test/latest/pull_tiproxy_jdbc_test/pipeline.groovy"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}