Skip to content

Commit 41d8974

Browse files
committed
fixup! fixup! fixup! fixup! fixup! ci(windows/gnu): install mingw via msys2/setup-msys2
1 parent 308763f commit 41d8974

File tree

2 files changed

+40
-28
lines changed

2 files changed

+40
-28
lines changed

.github/workflows/ci.yaml

+30-21
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,18 @@ jobs:
6464
msystem: ${{ matrix.mingwdir }}
6565
install: ${{ matrix.gcc_package }}
6666
- name: Add mingw tools to path
67-
shell: powershell
67+
shell: python
6868
if: matrix.mingwdir != ''
6969
run: |
70-
$(
71-
'C:\msys64\${{ matrix.mingwdir }}\bin'
72-
'C:\msys64\usr\bin'
73-
Get-Content $env:GITHUB_PATH
74-
) | Set-Content $env:GITHUB_PATH
75-
Get-Content $env:GITHUB_PATH
70+
import os
71+
72+
paths = [
73+
r'C:\msys64\${{ matrix.mingwdir }}\bin',
74+
r'C:\msys64\usr\bin',
75+
]
76+
with open(os.environ["GITHUB_PATH"], "a") as f:
77+
for path in paths:
78+
f.write(path + "\n")
7679
- name: Verify mingw gcc installation
7780
shell: powershell
7881
if: matrix.mingwdir != ''
@@ -216,15 +219,18 @@ jobs:
216219
msystem: ${{ matrix.mingwdir }}
217220
install: ${{ matrix.gcc_package }}
218221
- name: Add mingw tools to path
219-
shell: powershell
222+
shell: python
220223
if: matrix.mingwdir != ''
221224
run: |
222-
$(
223-
'C:\msys64\${{ matrix.mingwdir }}\bin'
224-
'C:\msys64\usr\bin'
225-
Get-Content $env:GITHUB_PATH
226-
) | Set-Content $env:GITHUB_PATH
227-
Get-Content $env:GITHUB_PATH
225+
import os
226+
227+
paths = [
228+
r'C:\msys64\${{ matrix.mingwdir }}\bin',
229+
r'C:\msys64\usr\bin',
230+
]
231+
with open(os.environ["GITHUB_PATH"], "a") as f:
232+
for path in paths:
233+
f.write(path + "\n")
228234
- name: Verify mingw gcc installation
229235
shell: powershell
230236
if: matrix.mingwdir != ''
@@ -374,15 +380,18 @@ jobs:
374380
msystem: ${{ matrix.mingwdir }}
375381
install: ${{ matrix.gcc_package }}
376382
- name: Add mingw tools to path
377-
shell: powershell
383+
shell: python
378384
if: matrix.mingwdir != ''
379385
run: |
380-
$(
381-
'C:\msys64\${{ matrix.mingwdir }}\bin'
382-
'C:\msys64\usr\bin'
383-
Get-Content $env:GITHUB_PATH
384-
) | Set-Content $env:GITHUB_PATH
385-
Get-Content $env:GITHUB_PATH
386+
import os
387+
388+
paths = [
389+
r'C:\msys64\${{ matrix.mingwdir }}\bin',
390+
r'C:\msys64\usr\bin',
391+
]
392+
with open(os.environ["GITHUB_PATH"], "a") as f:
393+
for path in paths:
394+
f.write(path + "\n")
386395
- name: Verify mingw gcc installation
387396
shell: powershell
388397
if: matrix.mingwdir != ''

ci/actions-templates/windows-builds-template.yaml

+10-7
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,18 @@ jobs: # skip-master skip-pr skip-stable
5858
msystem: ${{ matrix.mingwdir }}
5959
install: ${{ matrix.gcc_package }}
6060
- name: Add mingw tools to path
61-
shell: powershell
61+
shell: python
6262
if: matrix.mingwdir != ''
6363
run: |
64-
$(
65-
'C:\msys64\${{ matrix.mingwdir }}\bin'
66-
'C:\msys64\usr\bin'
67-
Get-Content $env:GITHUB_PATH
68-
) | Set-Content $env:GITHUB_PATH
69-
Get-Content $env:GITHUB_PATH
64+
import os
65+
66+
paths = [
67+
r'C:\msys64\${{ matrix.mingwdir }}\bin',
68+
r'C:\msys64\usr\bin',
69+
]
70+
with open(os.environ["GITHUB_PATH"], "a") as f:
71+
for path in paths:
72+
f.write(path + "\n")
7073
- name: Verify mingw gcc installation
7174
shell: powershell
7275
if: matrix.mingwdir != ''

0 commit comments

Comments
 (0)