Merge branch 'bugfix/fix_fake_pass_jobs_issue' into 'main'

fix: fake_pass job issue for tests

See merge request idf/esp-modbus!189
This commit is contained in:
Alex Lisitsyn
2026-05-18 12:48:32 +01:00
3 changed files with 8 additions and 8 deletions
+5 -5
View File
@@ -2,31 +2,31 @@
include:
- component: $CI_SERVER_FQDN/ci/actions/idf-dynamic-pipeline/ci-component@main
inputs:
build-job-image: "$CI_REGISTRY/ci/images/idf-v6.1:1"
build-job-image: "espressif/idf:latest"
test-job-image: "$CI_REGISTRY/ci/images/idf-v6.1-target-test:1"
build-job-tags: ["build"]
job-suffix: ":idf-latest"
- component: $CI_SERVER_FQDN/ci/actions/idf-dynamic-pipeline/ci-component@main
inputs:
build-job-image: "$CI_REGISTRY/ci/images/idf-v6.0:1"
build-job-image: "espressif/idf:release-v6.0"
test-job-image: "$CI_REGISTRY/ci/images/idf-v6.0-target-test:1"
build-job-tags: ["build"]
job-suffix: ":idf-v6.0"
- component: $CI_SERVER_FQDN/ci/actions/idf-dynamic-pipeline/ci-component@main
inputs:
build-job-image: "$CI_REGISTRY/ci/images/idf-v5.5:1"
build-job-image: "espressif/idf:release-v5.5"
test-job-image: "$CI_REGISTRY/ci/images/idf-v5.5-target-test:1"
build-job-tags: ["build"]
job-suffix: ":idf-v5.5"
- component: $CI_SERVER_FQDN/ci/actions/idf-dynamic-pipeline/ci-component@main
inputs:
build-job-image: "$CI_REGISTRY/ci/images/idf-v5.4:1"
build-job-image: "espressif/idf:release-v5.4"
test-job-image: "$CI_REGISTRY/ci/images/idf-v5.4-target-test:1"
build-job-tags: ["build"]
job-suffix: ":idf-v5.4"
- component: $CI_SERVER_FQDN/ci/actions/idf-dynamic-pipeline/ci-component@main
inputs:
build-job-image: "$CI_REGISTRY/ci/images/idf-v5.3:1"
build-job-image: "espressif/idf:release-v5.3"
test-job-image: "$CI_REGISTRY/ci/images/idf-v5.3-target-test:1"
build-job-tags: ["build"]
job-suffix: ":idf-v5.3"
+1 -1
View File
@@ -8,6 +8,6 @@ generate_prebuild_report:
expire_in: 1 week
when: always
script:
- pip install -U idf-ci
- pip install -U 'idf-ci>=1.0,<2'
- idf-ci build collect --format html -o prebuild_report.html
- echo "Report generated at ${CI_PROJECT_URL}/-/jobs/${CI_JOB_ID}/artifacts/file/prebuild_report.html"
+2 -2
View File
@@ -77,7 +77,7 @@ check_idf_ver:
expire_in: "1 week"
when: "always"
before_script:
- pip install -U idf-ci
- pip install -U 'idf-ci>=1.0,<2'
script:
- idf-ci build run
--parallel-count ${CI_NODE_TOTAL:-1}
@@ -187,7 +187,7 @@ job_template_jinja = """
job: "build_test_related_apps"
before_script:
- pip install -r ./tools/test_requirements.txt
- pip install -U 'idf-ci<1'
- pip install -U 'idf-ci>=1.0,<2'
script:
- eval pytest $nodes
--parallel-count ${CI_NODE_TOTAL:-1}