fix ci issues

This commit is contained in:
aleks
2024-08-26 12:10:31 +02:00
parent 538234a2e0
commit 7e53d81517

View File

@@ -45,7 +45,6 @@ after_script:
.before_script_build_jobs: .before_script_build_jobs:
before_script: before_script:
- pip install idf-component-manager --upgrade
- pip install "idf_build_apps~=1.0.1" - pip install "idf_build_apps~=1.0.1"
.check_idf_ver: &check_idf_ver | .check_idf_ver: &check_idf_ver |
@@ -126,18 +125,18 @@ build_idf_master:
variables: variables:
TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6 esp32h2" TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32c6 esp32h2"
build_idf_v5.3:
extends: .build_pytest_template
image: espressif/idf:release-v5.3
variables:
TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c2 esp32c6 esp32c3"
build_idf_v5.0: build_idf_v5.0:
extends: .build_pytest_template extends: .build_pytest_template
image: espressif/idf:release-v5.0 image: espressif/idf:release-v5.0
variables: variables:
TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c2 esp32c3" TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c2 esp32c3"
build_idf_v4.4:
extends: .build_pytest_template
image: espressif/idf:release-v4.4
variables:
TEST_TARGETS: "esp32 esp32s2 esp32s3 esp32c3"
.target_test_template: .target_test_template:
image: $TARGET_TEST_ENV_IMAGE image: $TARGET_TEST_ENV_IMAGE
stage: target_test stage: target_test
@@ -196,6 +195,19 @@ target_test_master:
artifacts: true artifacts: true
after_script: [] after_script: []
target_test_5.3:
stage: target_test
image: "$CI_DOCKER_REGISTRY/target-test-env-v5.3:1"
extends: .test_template
parallel:
matrix:
- TEST_PORT: ["serial"]
TEST_SUBDIR: ["examples/serial", "test_apps"] # test only serial examples for now
needs:
job: build_idf_v5.3
artifacts: true
after_script: []
target_test_v5.0: target_test_v5.0:
stage: target_test stage: target_test
image: "$CI_DOCKER_REGISTRY/target-test-env-v5.0:3" image: "$CI_DOCKER_REGISTRY/target-test-env-v5.0:3"
@@ -209,19 +221,6 @@ target_test_v5.0:
artifacts: true artifacts: true
after_script: [] after_script: []
target_test_v4.4:
stage: target_test
image: "$CI_DOCKER_REGISTRY/target-test-env-v5.0:3"
extends: .test_template
parallel:
matrix:
- TEST_PORT: ["serial"]
TEST_SUBDIR: ["examples/serial", "test_apps"]
needs:
job: build_idf_v4.4
artifacts: true
after_script: []
build_docs: build_docs:
stage: build stage: build
image: $ESP_DOCS_ENV_IMAGE image: $ESP_DOCS_ENV_IMAGE