Commit
ea9b68c9853bd883149d9da1564e116fbfc486d8
by noreply fileserver: migrate pingcap/tidb artifact downloads to OCI registry (#4274) Removes all `fileserver.pingcap.net` references from `pingcap/tidb` pipelines and jobs, replacing binary artifact fetching with OCI pulls via `hub-zot.pingcap.net/mirrors/hub`. ## Core pattern change **Before:** ```groovy environment { FILE_SERVER_URL = 'http://fileserver.pingcap.net' } // ... component.fetchAndExtractArtifact(FILE_SERVER_URL, 'tikv', REFS.base_ref, ...) component.fetchAndExtractArtifact(FILE_SERVER_URL, 'pd', REFS.base_ref, ...) ``` **After:** ```groovy environment { OCI_ARTIFACT_HOST = 'hub-zot.pingcap.net/mirrors/hub' } // ... final OCI_TAG_PD = component.computeArtifactOciTagFromPR('pd', REFS.base_ref, ...) final OCI_TAG_TIKV = component.computeArtifactOciTagFromPR('tikv', REFS.base_ref, ...) // ... container("utils") { dir("bin") { retry(3) { sh label: 'download tidb components', script: """ ${WORKSPACE}/scripts/artifacts/download_pingcap_oci_artifact.sh \ --pd=${OCI_TAG_PD} --tikv=${OCI_TAG_TIKV} """ } } } ``` ## Changes by category - **~60 integration/check2 test pipelines** (release-6.x → release-9.0-beta, latest): replaced `fetchAndExtractArtifact` for tikv/pd with OCI download; added `OCI_TAG_*` declarations; added `utils` sidecar container to pod templates where missing - **~13 build pipelines** (`pull_build`, `ghpr_build`): removed fileserver artifact upload steps and CI-flag curl uploads — builds no longer push to fileserver - **`periodics_integration_test.groovy`**: rewrote to use OCI download, removed sha1-based fileserver tracking - **Tiflash integration tests**: added `OCI_TAG_TIFLASH`; replaced tiflash binary and vector-search test data downloads (now pulled from `ann-benchmarks.com`) - **Sqllogic pod templates**: init containers now use `oras pull` from OCI registry instead of `wget` from fileserver - **`pull_br_integration_test_next_gen/download_tools.sh`**: localstack binary now fetched from GitHub Releases; removed deprecated `tikv-importer` download helper - **`release-6.x/ghpr_unit_test.groovy`**: codecov binary now downloaded from `uploader.codecov.io`; fileserver-based `junitUrl` cleared - **`prow-jobs/pingcap/tidb/latest-periodics.yaml`**: updated stale commented-out codecov URL <!-- START COPILOT ORIGINAL PROMPT --> <details> <summary>Original prompt</summary> > > ---- > > *This section details on the original issue you should resolve* > > <issue_title>fileserver: migrate artifacts for pingcap/tidb</issue_title> > <issue_description>Replace fileserver.pingcap.net usage for pingcap/tidb with OCI artifacts in a standard registry. > > Acceptance criteria: > - No fileserver.pingcap.net references in jobs/pipelines for pingcap/tidb > - Artifacts pulled via OCI registry with documented paths > </issue_description> > > ## Comments on the Issue (you are @copilot in this section) > > <comments> > </comments> > </details> <!-- START COPILOT CODING AGENT SUFFIX --> - Fixes PingCAP-QE/ci#4210 <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: wuhuizuo <2574558+wuhuizuo@users.noreply.github.com> Co-authored-by: wuhuizuo <wuhuizuo@126.com> (commit: ea9b68c ) The file was modified pipelines/pingcap/tidb/release-7.2/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.0/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.0/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_python_orm_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_integration_lightning_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.0/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.0/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.0/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.6/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-fips/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pod-pull_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_jdbc_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.6/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.2/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_binlog_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_nodejs_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.3/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_common_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_python_orm_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.0/pull_lightning_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_python_orm_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pod-periodics_integration_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_mysql_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.2/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-with-kv-timeout-feature/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_copr_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/periodics_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.2/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_br_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_sqllogic_test.groovy (diff) The file was modified prow-jobs/pingcap/tidb/latest-periodics.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_binlog_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_ddl_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_lightning_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.4/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/periodics_tidb_next_gen_smoke_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-with-kv-timeout-feature/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.2/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.2/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_unit_test_ddlv1.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-with-kv-timeout-feature/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.3/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/ghpr_build/pipeline.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_ddl_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/pull_unit_test_ddlv1.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.3/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_integration_br_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.4/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.0/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_python_orm_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pod-pull_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_python_orm_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.4/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/periodics_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_common_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.3/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-fips/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_integration_br_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.3/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.3/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.3/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_unit_test_ddlv1.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.6/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_common_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/pull_br_integration_test_next_gen/download_tools.sh (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.6/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_nodejs_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.4/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_binlog_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_build.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/periodics_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-with-kv-timeout-feature/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_binlog_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.6/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.2/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.3/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/pull_tiflash_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.6/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.4/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_common_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_mysql_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_tiflash_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_binlog_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/periodics_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_nodejs_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.4/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_mysql_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_ddl_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.6/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.6/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.4/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_jdbc_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.6/pull_lightning_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-fips/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_nodejs_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.2/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/pod-merged_tiflash_integration_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5-with-kv-timeout-feature/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_integration_lightning_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_mysql_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.2/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_integration_lightning_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_mysql_client_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.4/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.2/pull_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.2/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.0/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.3/pull_integration_br_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.0/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_nodejs_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_python_orm_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/periodics_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_mysql_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.3/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_copr_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/periodics_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_ddl_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/pod-merged_sqllogic_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.0/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.6/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_integration_copr_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_ddl_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_binlog_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified .agents/skills/test-jenkins-pipeline-changes-in-pr-by-replaying/SKILL.md (diff) The file was modified pipelines/pingcap/tidb/release-7.6/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_tiflash_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pull_integration_lightning_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_br_integration_test_next_gen/pipeline.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_nodejs_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/merged_integration_lightning_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_jdbc_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.3/ghpr_check2.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_common_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pod-pull_integration_binlog_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_binlog_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.0/ghpr_unit_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pod-pull_integration_copr_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pod-pull_integration_tidb_tools_test.yaml (diff) The file was modified pipelines/pingcap/tidb/latest/merged_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pod-pull_sqllogic_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.1/pull_sqllogic_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_br_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pull_integration_tidb_tools_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-9.0-beta/pull_integration_br_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_binlog_test.groovy (diff) The file was modified pipelines/pingcap/tidb/latest/pull_common_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5-20241101-v6.5.7/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.4/pod-pull_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_jdbc_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-7.4/ghpr_mysql_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_ddl_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pull_e2e_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.4/pod-ghpr_check2.yaml (diff) The file was modified pipelines/pingcap/tidb/release-6.5-fips/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.5/pull_integration_binlog_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-7.1/pod-pull_integration_copr_test.yaml (diff) The file was modified pipelines/pingcap/tidb/release-8.1/ghpr_build.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_integration_jdbc_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-8.1/pull_lightning_integration_test.groovy (diff) The file was modified pipelines/pingcap/tidb/release-6.5/pod-pull_integration_copr_test.yaml (diff)