From 057520f1c77039303dd36570241dcc80a7f77a76 Mon Sep 17 00:00:00 2001 From: Spooks <62370103+Spooks4576@users.noreply.github.com> Date: Mon, 4 Nov 2024 23:26:50 -0700 Subject: [PATCH] Update compile_generics.yml --- .github/workflows/compile_generics.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/compile_generics.yml b/.github/workflows/compile_generics.yml index 560b437c..ce8747bc 100644 --- a/.github/workflows/compile_generics.yml +++ b/.github/workflows/compile_generics.yml @@ -65,7 +65,6 @@ jobs: echo "Applying SDK Config: ${{ matrix.target.sdkconfig_file }} to $DEST_FILE" if [ -f "${{ matrix.target.sdkconfig_file }}" ]; then cp "${{ matrix.target.sdkconfig_file }}" "$DEST_FILE" - cat "$DEST_FILE" # Print contents for debugging else echo "Error: Source config file ${{ matrix.target.sdkconfig_file }} does not exist." exit 1 @@ -81,6 +80,7 @@ jobs: - name: Verify SDK Config Options run: | + DEST_FILE="sdkconfig" echo "Checking for Display Options in $DEST_FILE" grep -E "CONFIG_WITH_SCREEN|CONFIG_TFT_WIDTH|CONFIG_TFT_HEIGHT|CONFIG_USE_TOUCHSCREEN|CONFIG_USE_JOYSTICK|CONFIG_USE_CARDPUTER|CONFIG_IS_GHOST_BOARD|CONFIG_USE_7_INCHER|CONFIG_Waveshare_LCD|CONFIG_Crowtech_LCD|CONFIG_Sunton_LCD|CONFIG_USE_ILI9341_2" "$DEST_FILE" || echo "One or more options not found in $DEST_FILE"