Skip to content

Commit f796069

Browse files
committed
ci: make GCC specific Windows installers
1 parent 1b0784f commit f796069

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,10 @@ jobs:
192192
runs-on: windows-latest
193193
needs:
194194
- build
195+
strategy:
196+
fail-fast: false
197+
matrix:
198+
gcc_v: [10,11,12]
195199

196200
steps:
197201
- uses: actions/checkout@v4
@@ -200,7 +204,7 @@ jobs:
200204
uses: actions/download-artifact@v4
201205
with:
202206
path: ${{ github.workspace }}
203-
merge-multiple: true
207+
pattern: fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe
204208

205209
- name: Get version (normal)
206210
if: github.event_name != 'release'
@@ -230,7 +234,7 @@ jobs:
230234
- name: Fetch Windows executable
231235
shell: msys2 {0}
232236
run: |
233-
cp fpm-*/fpm*.exe ./ci/fpm.exe
237+
cp fpm-*/fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe ./ci/fpm.exe
234238
235239
- name: Fetch Git for Windows
236240
shell: msys2 {0}

0 commit comments

Comments
 (0)