mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2026-05-12 11:42:57 -04:00
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.
This commit is contained in:
parent
5f2cc25b17
commit
587fe6df0d
1 changed files with 8 additions and 0 deletions
8
.github/workflows/kernel-demos.yml
vendored
8
.github/workflows/kernel-demos.yml
vendored
|
|
@ -13,6 +13,10 @@ jobs:
|
||||||
name: WIN32 MSVC
|
name: WIN32 MSVC
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Enable long paths on Windows
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: git config --system core.longpaths true
|
||||||
|
|
||||||
- name: Checkout the FreeRTOS/FreeRTOS Repository
|
- name: Checkout the FreeRTOS/FreeRTOS Repository
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
with:
|
with:
|
||||||
|
|
@ -42,6 +46,10 @@ jobs:
|
||||||
name: WIN32 MingW
|
name: WIN32 MingW
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Enable long paths on Windows
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
run: git config --system core.longpaths true
|
||||||
|
|
||||||
- name: Checkout the FreeRTOS/FreeRTOS Repository
|
- name: Checkout the FreeRTOS/FreeRTOS Repository
|
||||||
uses: actions/checkout@v4.1.1
|
uses: actions/checkout@v4.1.1
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue