<freeStyleBuild _class='hudson.model.FreeStyleBuild'><action _class='hudson.model.CauseAction'><cause _class='com.cloudbees.jenkins.GitHubPushCause'><shortDescription>Started by GitHub push by ti-chi-bot[bot]</shortDescription></cause><cause _class='com.cloudbees.jenkins.GitHubPushCause'><shortDescription>Started by GitHub push by ti-chi-bot[bot]</shortDescription></cause></action><action></action><action _class='jenkins.metrics.impl.TimeInQueueAction'><blockedDurationMillis>0</blockedDurationMillis><blockedTimeMillis>0</blockedTimeMillis><buildableDurationMillis>16849</buildableDurationMillis><buildableTimeMillis>16849</buildableTimeMillis><buildingDurationMillis>55362</buildingDurationMillis><executingTimeMillis>55362</executingTimeMillis><executorUtilization>1.0</executorUtilization><subTaskCount>0</subTaskCount><waitingDurationMillis>7006</waitingDurationMillis><waitingTimeMillis>7006</waitingTimeMillis></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><originmain _class='hudson.plugins.git.util.Build'><buildNumber>1456</buildNumber><marked><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><branch><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><name>origin/main</name></branch></marked><revision><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><branch><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><name>origin/main</name></branch></revision></originmain></buildsByBranchName><lastBuiltRevision><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><branch><SHA1>85e98b43a6f9d302231bc952ff929ea33f61570f</SHA1><name>origin/main</name></branch></lastBuiltRevision><remoteUrl>https://github.com/PingCAP-QE/ci.git</remoteUrl><scmName></scmName></action><action></action><action></action><action></action><action></action><action></action><action></action><action _class='org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction'></action><building>false</building><displayName>#1456</displayName><duration>55362</duration><estimatedDuration>50732</estimatedDuration><fullDisplayName>seed #1456</fullDisplayName><id>1456</id><inProgress>false</inProgress><keepLog>false</keepLog><number>1456</number><queueId>3355400</queueId><result>SUCCESS</result><timestamp>1772530317648</timestamp><url>https://do.pingcap.net/jenkins/job/seed/1456/</url><builtOn>default-6zhw0</builtOn><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>pipelines/tikv/tikv/release-6.5/pod-pull_integration_test.yaml</affectedPath><affectedPath>prow-jobs/pingcap-qe/ci/presubmits.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.1/pod-pull_integration_test.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.1/pod-pull_integration_test.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.4/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.5/pod-pull_integration_test.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.5/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/latest/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.1/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.1/pull_integration_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-6.5/pull_integration_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-6.5/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.3/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-6.1/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.5/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/latest/pull_integration_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.1/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.2/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-6.1/pod-pull_integration_test.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-9.0-beta/pull_unit_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-8.1/pull_integration_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/latest/pod-pull_integration_test.yaml</affectedPath><affectedPath>pipelines/tikv/tikv/release-6.1/pull_integration_test.groovy</affectedPath><affectedPath>pipelines/tikv/tikv/release-7.5/pull_integration_test.groovy</affectedPath><commitId>85e98b43a6f9d302231bc952ff929ea33f61570f</commitId><timestamp>1772530289000</timestamp><author><absoluteUrl>https://do.pingcap.net/jenkins/user/noreply</absoluteUrl><fullName>noreply</fullName></author><authorEmail>noreply@github.com</authorEmail><comment>fileserver: migrate tikv/tikv artifact downloads to OCI registry (#4267)

Removes all `fileserver.pingcap.net` references from `tikv/tikv`
pipelines, replacing artifact fetches with OCI-based downloads via
`hub-zot.pingcap.net/mirrors/hub`.

## Changes

- **`pull_unit_test.groovy` (11 files)** — Removed unused
`FILE_SERVER_URL` env var across all branches (latest, release-6.1 →
release-9.0-beta); the variable was declared but never consumed in these
pipelines.

- **`pull_integration_test.groovy` (6 files: latest, release-6.1, 6.5,
7.1, 7.5, 8.1)** — Migrated artifact preparation stage from
`fetchAndExtractArtifact` to `download_pingcap_oci_artifact.sh`:

  ```groovy
  // Before
  environment { FILE_SERVER_URL = 'http://fileserver.pingcap.net' }
  // ...
  component.fetchAndExtractArtifact(FILE_SERVER_URL, 'pd', ...)
  component.fetchAndExtractArtifact(FILE_SERVER_URL, 'tikv', ...)
  component.fetchAndExtractArtifact(FILE_SERVER_URL, 'tidb', ...)

  // After
final OCI_TAG_PD = component.computeArtifactOciTagFromPR('pd',
REFS.base_ref, REFS.pulls[0].title, 'master')
final OCI_TAG_TIKV = component.computeArtifactOciTagFromPR('tikv',
REFS.base_ref, REFS.pulls[0].title, 'master')
final OCI_TAG_TIDB = component.computeArtifactOciTagFromPR('tidb',
REFS.base_ref, REFS.pulls[0].title, 'master')
  environment { OCI_ARTIFACT_HOST = 'hub-zot.pingcap.net/mirrors/hub' }
  // ...
  container('utils') {
sh "${WORKSPACE}/scripts/artifacts/download_pingcap_oci_artifact.sh
--pd=${OCI_TAG_PD} --tikv=${OCI_TAG_TIKV} --tidb=${OCI_TAG_TIDB}"
  }
  ```

- **`pod-pull_integration_test.yaml` (6 files)** — Added `utils`
container (`ghcr.io/pingcap-qe/cd/utils/release:v2025.10.12-7-gfdd779c`)
to each integration test pod spec, providing the `oras` tooling required
by the download script.

&lt;!-- START COPILOT ORIGINAL PROMPT --&gt;



&lt;details&gt;

&lt;summary&gt;Original prompt&lt;/summary&gt;

&gt; 
&gt; ----
&gt; 
&gt; *This section details on the original issue you should resolve*
&gt; 
&gt; &lt;issue_title&gt;fileserver: migrate artifacts for tikv/tikv&lt;/issue_title&gt;
&gt; &lt;issue_description&gt;Replace fileserver.pingcap.net usage for tikv/tikv
with OCI artifacts in a standard registry.
&gt; 
&gt; Acceptance criteria:
&gt; - No fileserver.pingcap.net references in jobs/pipelines for tikv/tikv
&gt; - Artifacts pulled via OCI registry with documented paths
&gt; &lt;/issue_description&gt;
&gt; 
&gt; ## Comments on the Issue (you are @copilot in this section)
&gt; 
&gt; &lt;comments&gt;
&gt; &lt;/comments&gt;
&gt; 


&lt;/details&gt;



&lt;!-- START COPILOT CODING AGENT SUFFIX --&gt;

- Fixes PingCAP-QE/ci#4212

&lt;!-- START COPILOT CODING AGENT TIPS --&gt;
---

🔒 GitHub Advanced Security automatically protects Copilot coding agent
pull requests. You can protect all pull requests by enabling Advanced
Security for your repositories. [Learn more about Advanced
Security.](https://gh.io/cca-advanced-security)

---------

Co-authored-by: copilot-swe-agent[bot] &lt;198982749+Copilot@users.noreply.github.com&gt;
Co-authored-by: wuhuizuo &lt;2574558+wuhuizuo@users.noreply.github.com&gt;
Co-authored-by: wuhuizuo &lt;wuhuizuo@126.com&gt;
</comment><date>2026-03-03 09:31:29 +0000</date><id>85e98b43a6f9d302231bc952ff929ea33f61570f</id><msg>fileserver: migrate tikv/tikv artifact downloads to OCI registry (#4267)</msg><path><editType>edit</editType><file>pipelines/tikv/tikv/latest/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.1/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.1/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.5/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.3/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.1/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.1/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.1/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.2/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/latest/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.5/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.1/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.5/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-7.5/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.4/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.5/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.1/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-9.0-beta/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.1/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>prow-jobs/pingcap-qe/ci/presubmits.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-8.1/pull_integration_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/latest/pull_unit_test.groovy</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.5/pod-pull_integration_test.yaml</file></path><path><editType>edit</editType><file>pipelines/tikv/tikv/release-6.5/pull_unit_test.groovy</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>https://do.pingcap.net/jenkins/user/noreply</absoluteUrl><fullName>noreply</fullName></culprit></freeStyleBuild>