@@ -53,19 +53,13 @@ jobs:
5353
5454 win32-x64-test :
5555 name : ' win32-x64 riscv-none-elf-gcc ${{github.event.inputs.version}} test 2025'
56- runs-on : windows-2022
56+ runs-on : windows-2025
5757 defaults :
5858 run :
5959 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell
6060 shell : bash # for --
6161
6262 steps :
63- - name : Enable Long Path Support
64- run : |
65- New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
66- Write-Host "Long Path Support enabled"
67- shell : powershell
68-
6963 - name : ' Show environment'
7064 run : |
7165 uname -a
@@ -91,15 +85,12 @@ jobs:
9185
9286 - name : ' Move workspace to short path for MinGW compatibility'
9387 run : |
94- REM Create short path directory
88+ echo Creating D:\t short name folder...
9589 mkdir D:\t
96- echo Created D:\t directory
9790
98- REM Move entire workspace to short path
9991 echo Moving workspace to D:\t...
10092 robocopy "%GITHUB_WORKSPACE%" "D:\t" /E /MOVE /NFL /NDL /NJH /NJS /NC /NS
10193
102- REM Check if robocopy succeeded (exit codes 0-3 are success for robocopy)
10394 if %ERRORLEVEL% LEQ 3 (
10495 echo ✓ Workspace successfully moved to D:\t
10596 dir D:\t
@@ -111,15 +102,6 @@ jobs:
111102
112103 - name : ' Run ${{github.event.inputs.version}} native test'
113104 working-directory : D:\t
114- env :
115- # Use short temp paths
116- TMP : D:/tmp
117- TEMP : D:/tmp
118- TMPDIR : D:/tmp
119- run : |
120- # Create temp directory
121- mkdir -p D:/tmp
122- # Run the test from the short path
123- bash build-assets/scripts/test.sh --version ${{github.event.inputs.version}} --base-url ${{github.event.inputs.base_url}} --develop
124-
105+ # Run the test from the short path
106+ run : bash build-assets/scripts/test.sh --version ${{github.event.inputs.version}} --base-url ${{github.event.inputs.base_url}}
125107
0 commit comments