mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
CI: remove ESP32S2Beta related jobs
This commit is contained in:
@ -48,12 +48,6 @@ build_ssc_esp32:
|
|||||||
variables:
|
variables:
|
||||||
TARGET_NAME: "ESP32"
|
TARGET_NAME: "ESP32"
|
||||||
|
|
||||||
build_ssc_esp32s2beta:
|
|
||||||
extends: .build_ssc_template
|
|
||||||
parallel: 2
|
|
||||||
variables:
|
|
||||||
TARGET_NAME: "ESP32S2"
|
|
||||||
|
|
||||||
build_esp_idf_tests_make:
|
build_esp_idf_tests_make:
|
||||||
extends: .build_esp_idf_unit_test_template
|
extends: .build_esp_idf_unit_test_template
|
||||||
variables:
|
variables:
|
||||||
@ -185,11 +179,6 @@ build_examples_cmake_esp32:
|
|||||||
variables:
|
variables:
|
||||||
IDF_TARGET: esp32
|
IDF_TARGET: esp32
|
||||||
|
|
||||||
build_examples_cmake_esp32s2:
|
|
||||||
extends: .build_examples_cmake
|
|
||||||
variables:
|
|
||||||
IDF_TARGET: esp32s2beta
|
|
||||||
|
|
||||||
# If you want to add new build example jobs, please add it into dependencies of `.example_test_template`
|
# If you want to add new build example jobs, please add it into dependencies of `.example_test_template`
|
||||||
|
|
||||||
.build_docs_template: &build_docs_template
|
.build_docs_template: &build_docs_template
|
||||||
|
@ -233,22 +233,6 @@ test_esp32_efuse_table_on_host:
|
|||||||
- cd ${IDF_PATH}/components/efuse/test_efuse_host
|
- cd ${IDF_PATH}/components/efuse/test_efuse_host
|
||||||
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh ./efuse_tests.py
|
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh ./efuse_tests.py
|
||||||
|
|
||||||
test_esp32s2beta_efuse_table_on_host:
|
|
||||||
extends: .host_test_template
|
|
||||||
artifacts:
|
|
||||||
when: on_failure
|
|
||||||
paths:
|
|
||||||
- components/efuse/esp32s2beta/esp_efuse_table.c
|
|
||||||
expire_in: 1 week
|
|
||||||
script:
|
|
||||||
- cd ${IDF_PATH}/components/efuse/
|
|
||||||
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh -p 2.7.15 ./efuse_table_gen.py -t "esp32s2beta" ${IDF_PATH}/components/efuse/esp32s2beta/esp_efuse_table.csv
|
|
||||||
- git diff --exit-code -- esp32s2beta/esp_efuse_table.c || { echo 'Differences found for esp32s2beta target. Please run make efuse_common_table or idf.py efuse_common_table and commit the changes.'; exit 1; }
|
|
||||||
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh -p 3.4.8 ./efuse_table_gen.py -t "esp32s2beta" ${IDF_PATH}/components/efuse/esp32s2beta/esp_efuse_table.csv
|
|
||||||
- git diff --exit-code -- esp32s2beta/esp_efuse_table.c || { echo 'Differences found between running under Python 2 and 3.'; exit 1; }
|
|
||||||
- cd ${IDF_PATH}/components/efuse/test_efuse_host
|
|
||||||
- ${IDF_PATH}/tools/ci/multirun_with_pyenv.sh ./efuse_tests.py
|
|
||||||
|
|
||||||
test_espcoredump:
|
test_espcoredump:
|
||||||
extends: .host_test_template
|
extends: .host_test_template
|
||||||
artifacts:
|
artifacts:
|
||||||
|
@ -160,8 +160,8 @@ build_template_app:
|
|||||||
|
|
||||||
# Check if there are any stray printf/ets_printf references in WiFi libs
|
# Check if there are any stray printf/ets_printf references in WiFi libs
|
||||||
- pushd ../components/esp_wifi/lib
|
- pushd ../components/esp_wifi/lib
|
||||||
- for dir in esp32 esp32s2beta; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w printf | wc -l) -eq 0; done;
|
- for dir in esp32; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w printf | wc -l) -eq 0; done;
|
||||||
- for dir in esp32 esp32s2beta; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w ets_printf | wc -l) -eq 0; done;
|
- for dir in esp32; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w ets_printf | wc -l) -eq 0; done;
|
||||||
- popd
|
- popd
|
||||||
|
|
||||||
# For release tag pipelines only, make sure the tag was created with 'git tag -a' so it will update
|
# For release tag pipelines only, make sure the tag was created with 'git tag -a' so it will update
|
||||||
|
Reference in New Issue
Block a user