ci: move check_submodule_sync to ci/actions/common

This commit is contained in:
Fu Hanxi
2026-08-26 09:44:36 +02:00
parent 65817f36ce
commit 545f2abacc
2 changed files with 1 additions and 26 deletions

View File

@@ -7,7 +7,7 @@ include:
- "templates/idf/v2/pre_check.yml" - "templates/idf/v2/pre_check.yml"
- "templates/idf/pre-commit.yml" - "templates/idf/pre-commit.yml"
- "templates/idf/build.yml" - "templates/idf/build.yml"
- "templates/idf/deploy-github.yml" - "templates/idf/v2/deploy-github.yml"
- "templates/idf/deploy-docs.yml" - "templates/idf/deploy-docs.yml"
- "templates/idf/integration-test.yml" - "templates/idf/integration-test.yml"
- "templates/idf/sync-files.yml" - "templates/idf/sync-files.yml"
@@ -29,7 +29,6 @@ include:
- ".gitlab/ci/manual_gate.yml" - ".gitlab/ci/manual_gate.yml"
- ".gitlab/ci/upload_cache.yml" - ".gitlab/ci/upload_cache.yml"
- ".gitlab/ci/pre_check.yml" - ".gitlab/ci/pre_check.yml"
- ".gitlab/ci/pre_deploy.yml"
- ".gitlab/ci/static-code-analysis.yml" - ".gitlab/ci/static-code-analysis.yml"
- ".gitlab/ci/build.yml" - ".gitlab/ci/build.yml"
- ".gitlab/ci/host-test.yml" - ".gitlab/ci/host-test.yml"

View File

@@ -1,24 +0,0 @@
.pre_deploy_template:
stage: pre_deploy
image: $ESP_ENV_IMAGE
check_submodule_sync:
extends:
- .pre_deploy_template
- .rules:test:submodule
tags: [ brew, github_sync ]
retry: 2
variables:
GIT_STRATEGY: fetch # use brew local mirror first
SUBMODULES_TO_FETCH: "none"
PUBLIC_IDF_URL: "https://github.com/espressif/esp-idf.git"
script:
- git submodule deinit --force .
- rm -rf .git/modules # remove all the cached metadata
# setting the default remote URL to the public one, to resolve relative location URLs
- git config remote.origin.url ${PUBLIC_IDF_URL}
# check if all submodules are correctly synced to public repository
- git submodule init
- git config --get-regexp '^submodule\..*\.url$' || true
- git submodule update --recursive
- echo "IDF was cloned from ${PUBLIC_IDF_URL} completely"