{
  "_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" : 22371,
      "buildableTimeMillis" : 22371,
      "buildingDurationMillis" : 45915,
      "executingTimeMillis" : 45915,
      "executorUtilization" : 1.0,
      "subTaskCount" : 0,
      "waitingDurationMillis" : 7786,
      "waitingTimeMillis" : 7786
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/main" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1452,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
            "branch" : [
              {
                "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
                "name" : "origin/main"
              }
            ]
          },
          "revision" : {
            "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
            "branch" : [
              {
                "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
                "name" : "origin/main"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
        "branch" : [
          {
            "SHA1" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
            "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" : "#1452",
  "duration" : 45915,
  "estimatedDuration" : 104415,
  "executor" : None,
  "fullDisplayName" : "seed #1452",
  "id" : "1452",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 1452,
  "queueId" : 3349504,
  "result" : "SUCCESS",
  "timestamp" : 1772454727457,
  "url" : "https://do.pingcap.net/jenkins/job/seed/1452/",
  "builtOn" : "default-stqp0",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "pipelines/tikv/copr-test/latest/pull_integration_test.groovy",
          "pipelines/tikv/copr-test/latest/pod-pull_integration_test.yaml",
          ".ci/replay-jenkins-build.sh"
        ],
        "commitId" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
        "timestamp" : 1772454692000,
        "author" : {
          "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
          "fullName" : "noreply"
        },
        "authorEmail" : "noreply@github.com",
        "comment" : "fileserver: migrate tikv/copr-test artifacts to OCI registry (#4275)\u000a\u000a`tikv/copr-test` pipeline was fetching `tikv-server` and `pd-server`\u000abinaries from `fileserver.pingcap.net` via the legacy\u000a`component.fetchAndExtractArtifact` helper. This migrates to OCI\u000aartifacts on `hub-zot.pingcap.net/mirrors/hub`, consistent with the\u000apattern already used in\u000a`tikv/pd/latest/pull_integration_copr_test.groovy`.\u000a\u000a### Changes\u000a\u000a- **`pod-pull_integration_test.yaml`** — add `utils` container\u000a(`ghcr.io/pingcap-qe/cd/utils/release`) providing `oras`/`yq` for OCI\u000apulls\u000a- **`pull_integration_test.groovy`**\u000a- Replace `FILE_SERVER_URL` env var with `OCI_ARTIFACT_HOST =\u000a'hub-zot.pingcap.net/mirrors/hub'`\u000a- Compute OCI tags from PR metadata via\u000a`component.computeArtifactOciTagFromPR()`\u000a- Replace `component.fetchAndExtractArtifact(FILE_SERVER_URL, ...)` with\u000a`download_pingcap_oci_artifact.sh` running in the `utils` container\u000a\u000a```groovy\u000afinal OCI_TAG_TIKV = component.computeArtifactOciTagFromPR('tikv', REFS.base_ref, REFS.pulls[0].title, 'master')\u000afinal OCI_TAG_PD   = component.computeArtifactOciTagFromPR('pd',   REFS.base_ref, REFS.pulls[0].title, 'master')\u000a\u000a// in Prepare stage, utils container:\u000a${WORKSPACE}/scripts/artifacts/download_pingcap_oci_artifact.sh \\\u000a    --tikv=${OCI_TAG_TIKV} \\\u000a    --pd=${OCI_TAG_PD}\u000a```\u000a\u000a<!-- START COPILOT ORIGINAL PROMPT -->\u000a\u000a\u000a\u000a<details>\u000a\u000a<summary>Original prompt</summary>\u000a\u000a> \u000a> ----\u000a> \u000a> *This section details on the original issue you should resolve*\u000a> \u000a> <issue_title>fileserver: migrate artifacts for\u000atikv/copr-test</issue_title>\u000a> <issue_description>Replace fileserver.pingcap.net usage for\u000atikv/copr-test with OCI artifacts in a standard registry.\u000a> \u000a> Acceptance criteria:\u000a> - No fileserver.pingcap.net references in jobs/pipelines for\u000atikv/copr-test\u000a> - Artifacts pulled via OCI registry with documented paths\u000a> </issue_description>\u000a> \u000a> ## Comments on the Issue (you are @copilot in this section)\u000a> \u000a> <comments>\u000a> </comments>\u000a> \u000a\u000a\u000a</details>\u000a\u000a\u000a\u000a<!-- START COPILOT CODING AGENT SUFFIX -->\u000a\u000a- Fixes PingCAP-QE/ci#4214\u000a\u000a<!-- START COPILOT CODING AGENT TIPS -->\u000a---\u000a\u000a✨ Let Copilot coding agent [set things up for\u000ayou](https://github.com/PingCAP-QE/ci/issues/new?title=✨+Set+up+Copilot+instructions&body=Configure%20instructions%20for%20this%20repository%20as%20documented%20in%20%5BBest%20practices%20for%20Copilot%20coding%20agent%20in%20your%20repository%5D%28https://gh.io/copilot-coding-agent-tips%29%2E%0A%0A%3COnboard%20this%20repo%3E&assignees=copilot)\u000a— coding agent works faster and does higher quality work when set up for\u000ayour repo.\u000a\u000a---------\u000a\u000aCo-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>\u000aCo-authored-by: wuhuizuo <2574558+wuhuizuo@users.noreply.github.com>\u000aCo-authored-by: wuhuizuo <wuhuizuo@126.com>\u000a",
        "date" : "2026-03-02 12:31:32 +0000",
        "id" : "9a6fb230003a411446861bbace8cdf4524ecb9a6",
        "msg" : "fileserver: migrate tikv/copr-test artifacts to OCI registry (#4275)",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "pipelines/tikv/copr-test/latest/pod-pull_integration_test.yaml"
          },
          {
            "editType" : "edit",
            "file" : "pipelines/tikv/copr-test/latest/pull_integration_test.groovy"
          },
          {
            "editType" : "edit",
            "file" : ".ci/replay-jenkins-build.sh"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://do.pingcap.net/jenkins/user/noreply",
      "fullName" : "noreply"
    }
  ]
}