From 88d52a7ab31b5fba9b60af2321c2d617d2163e4a Mon Sep 17 00:00:00 2001 From: Klaus Musch Date: Wed, 13 Mar 2024 15:01:51 +0100 Subject: [PATCH] Update build-platformio-windows.yml --- .github/workflows/build-platformio-windows.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-platformio-windows.yml b/.github/workflows/build-platformio-windows.yml index 13d0454..0af95f6 100644 --- a/.github/workflows/build-platformio-windows.yml +++ b/.github/workflows/build-platformio-windows.yml @@ -33,20 +33,18 @@ jobs: msystem: ${{matrix.sys}} install: >- mingw-w64-${{matrix.env}}-gcc - mingw-w64-${{matrix.env}}-gdb + # mingw-w64-${{matrix.env}}-gdb mingw-w64-${{matrix.env}}-SDL2 - - name: Add paths mingw64 if: ${{matrix.sys == 'mingw64'}} run: | - echo "${{ runner.temp }}\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "${{ runner.temp }}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - + echo "${{runner.temp}}\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${{runner.temp}}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - name: Add paths mingw32 if: ${{matrix.sys == 'mingw32'}} run: | - echo "${{ runner.temp }}\msys64\mingw32\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - echo "${{ runner.temp }}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${{runner.temp}}\msys64\mingw32\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${{runner.temp}}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - name: Install PlatformIO Core run: pip install --upgrade platformio