Update build-platformio-windows.yml
This commit is contained in:
parent
e0bc72e758
commit
88d52a7ab3
1 changed files with 5 additions and 7 deletions
12
.github/workflows/build-platformio-windows.yml
vendored
12
.github/workflows/build-platformio-windows.yml
vendored
|
@ -33,20 +33,18 @@ jobs:
|
||||||
msystem: ${{matrix.sys}}
|
msystem: ${{matrix.sys}}
|
||||||
install: >-
|
install: >-
|
||||||
mingw-w64-${{matrix.env}}-gcc
|
mingw-w64-${{matrix.env}}-gcc
|
||||||
mingw-w64-${{matrix.env}}-gdb
|
# mingw-w64-${{matrix.env}}-gdb
|
||||||
mingw-w64-${{matrix.env}}-SDL2
|
mingw-w64-${{matrix.env}}-SDL2
|
||||||
|
|
||||||
- name: Add paths mingw64
|
- name: Add paths mingw64
|
||||||
if: ${{matrix.sys == 'mingw64'}}
|
if: ${{matrix.sys == 'mingw64'}}
|
||||||
run: |
|
run: |
|
||||||
echo "${{ runner.temp }}\msys64\mingw64\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
|
echo "${{runner.temp}}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||||
|
|
||||||
- name: Add paths mingw32
|
- name: Add paths mingw32
|
||||||
if: ${{matrix.sys == 'mingw32'}}
|
if: ${{matrix.sys == 'mingw32'}}
|
||||||
run: |
|
run: |
|
||||||
echo "${{ runner.temp }}\msys64\mingw32\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
|
echo "${{runner.temp}}\msys64\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
||||||
|
|
||||||
- name: Install PlatformIO Core
|
- name: Install PlatformIO Core
|
||||||
run: pip install --upgrade platformio
|
run: pip install --upgrade platformio
|
||||||
|
|
Loading…
Reference in a new issue