From 8b18bf6ea63d841c37a8a70cdeb4af0db1845fad Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Tue, 26 Nov 2024 14:42:44 +0100 Subject: [PATCH] Remove the s2 kaluga kit from the esp-idf nightly tests This configuration has been causing build issues for many weeks now and this isn't something we've ever seen in production. cc #6713 --- .github/workflows/nightly_tests.yaml | 6 ------ .../carousel/esp-idf/s2-kaluga-kit/CMakeLists.txt | 13 ------------- .../esp-idf/s2-kaluga-kit/main/CMakeLists.txt | 11 ----------- .../esp-idf/s2-kaluga-kit/main/idf_component.yml | 9 --------- .../esp-idf/s2-kaluga-kit/sdkconfig.defaults | 6 ------ 5 files changed, 45 deletions(-) delete mode 100644 examples/carousel/esp-idf/s2-kaluga-kit/CMakeLists.txt delete mode 100644 examples/carousel/esp-idf/s2-kaluga-kit/main/CMakeLists.txt delete mode 100644 examples/carousel/esp-idf/s2-kaluga-kit/main/idf_component.yml delete mode 100644 examples/carousel/esp-idf/s2-kaluga-kit/sdkconfig.defaults diff --git a/.github/workflows/nightly_tests.yaml b/.github/workflows/nightly_tests.yaml index e4aee48f17f..812597b091f 100644 --- a/.github/workflows/nightly_tests.yaml +++ b/.github/workflows/nightly_tests.yaml @@ -44,12 +44,6 @@ jobs: run: | . ${IDF_PATH}/export.sh idf.py -D SLINT_ESP_LOCAL_EXAMPLE=OFF build - - name: Build and Test Carousel example s2 kaluga kit - shell: bash - working-directory: examples/carousel/esp-idf/s2-kaluga-kit - run: | - . ${IDF_PATH}/export.sh - idf.py -D SLINT_ESP_LOCAL_EXAMPLE=OFF build qa-tree-sitter-latest: uses: ./.github/workflows/tree_sitter.yaml diff --git a/examples/carousel/esp-idf/s2-kaluga-kit/CMakeLists.txt b/examples/carousel/esp-idf/s2-kaluga-kit/CMakeLists.txt deleted file mode 100644 index fb592255ea1..00000000000 --- a/examples/carousel/esp-idf/s2-kaluga-kit/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright © SixtyFPS GmbH -# SPDX-License-Identifier: MIT - -cmake_minimum_required(VERSION 3.14) - -include($ENV{IDF_PATH}/tools/cmake/project.cmake) - -set(SLINT_ESP_LOCAL_EXAMPLE ON CACHE BOOL "Build example with local version of Slint") -set(EXTRA_COMPONENT_DIRS ../../../../api/cpp/esp-idf/) - -add_compile_options(-fdiagnostics-color=always) - -project(slint_esp_carousel_mcu LANGUAGES CXX) diff --git a/examples/carousel/esp-idf/s2-kaluga-kit/main/CMakeLists.txt b/examples/carousel/esp-idf/s2-kaluga-kit/main/CMakeLists.txt deleted file mode 100644 index 13325be8434..00000000000 --- a/examples/carousel/esp-idf/s2-kaluga-kit/main/CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright © SixtyFPS GmbH -# SPDX-License-Identifier: MIT - -idf_component_register( - SRCS "../../main.cpp" - INCLUDE_DIRS "." - REQUIRES slint -) - -slint_target_sources(${COMPONENT_LIB} ../../../ui/carousel_demo.slint) - diff --git a/examples/carousel/esp-idf/s2-kaluga-kit/main/idf_component.yml b/examples/carousel/esp-idf/s2-kaluga-kit/main/idf_component.yml deleted file mode 100644 index 10cd5a27dc2..00000000000 --- a/examples/carousel/esp-idf/s2-kaluga-kit/main/idf_component.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Copyright © SixtyFPS GmbH -# SPDX-License-Identifier: MIT - -## IDF Component Manager Manifest File -dependencies: - idf: ">=5.1" - espressif/esp32_s2_kaluga_kit: - version: "^2.2.4" - espressif/esp_lvgl_port: "=1.4.0" diff --git a/examples/carousel/esp-idf/s2-kaluga-kit/sdkconfig.defaults b/examples/carousel/esp-idf/s2-kaluga-kit/sdkconfig.defaults deleted file mode 100644 index b831bed3967..00000000000 --- a/examples/carousel/esp-idf/s2-kaluga-kit/sdkconfig.defaults +++ /dev/null @@ -1,6 +0,0 @@ -CONFIG_IDF_TARGET="esp32s2" -CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y -CONFIG_COMPILER_OPTIMIZATION_PERF=y -CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y -CONFIG_FREERTOS_HZ=1000 -CONFIG_ESP_MAIN_TASK_STACK_SIZE=13584