From 2737e45c24a231861c781ea44cf2bd9ca63baf19 Mon Sep 17 00:00:00 2001 From: Kody Stribrny Date: Wed, 22 Apr 2026 11:05:16 -0700 Subject: [PATCH] Fix long path errors on Windows demos Both the WIN32-MSVC and WIN32-MingW demos are failing due to long file paths. This is because of a transitive dependency path which is submodules further extending the path length. Enabling windows long path support fixes this. --- .github/workflows/kernel-demos.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/kernel-demos.yml b/.github/workflows/kernel-demos.yml index 9371e9cea..e120aceac 100644 --- a/.github/workflows/kernel-demos.yml +++ b/.github/workflows/kernel-demos.yml @@ -13,6 +13,10 @@ jobs: name: WIN32 MSVC runs-on: windows-latest steps: + - name: Enable long paths on Windows + if: runner.os == 'Windows' + run: git config --system core.longpaths true + - name: Checkout the FreeRTOS/FreeRTOS Repository uses: actions/checkout@v4.1.1 with: @@ -42,6 +46,10 @@ jobs: name: WIN32 MingW runs-on: windows-latest steps: + - name: Enable long paths on Windows + if: runner.os == 'Windows' + run: git config --system core.longpaths true + - name: Checkout the FreeRTOS/FreeRTOS Repository uses: actions/checkout@v4.1.1 with: