@@ -64,15 +64,18 @@ jobs:
64
64
msystem : ${{ matrix.mingwdir }}
65
65
install : ${{ matrix.gcc_package }}
66
66
- name : Add mingw tools to path
67
- shell : powershell
67
+ shell : python
68
68
if : matrix.mingwdir != ''
69
69
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")
76
79
- name : Verify mingw gcc installation
77
80
shell : powershell
78
81
if : matrix.mingwdir != ''
@@ -216,15 +219,18 @@ jobs:
216
219
msystem : ${{ matrix.mingwdir }}
217
220
install : ${{ matrix.gcc_package }}
218
221
- name : Add mingw tools to path
219
- shell : powershell
222
+ shell : python
220
223
if : matrix.mingwdir != ''
221
224
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")
228
234
- name : Verify mingw gcc installation
229
235
shell : powershell
230
236
if : matrix.mingwdir != ''
@@ -374,15 +380,18 @@ jobs:
374
380
msystem : ${{ matrix.mingwdir }}
375
381
install : ${{ matrix.gcc_package }}
376
382
- name : Add mingw tools to path
377
- shell : powershell
383
+ shell : python
378
384
if : matrix.mingwdir != ''
379
385
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")
386
395
- name : Verify mingw gcc installation
387
396
shell : powershell
388
397
if : matrix.mingwdir != ''
0 commit comments