Skip to content

Commit

Permalink
ci: make GCC specific Windows installers
Browse files Browse the repository at this point in the history
  • Loading branch information
gnikit committed Jun 9, 2024
1 parent 1b0784f commit f796069
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,10 @@ jobs:
runs-on: windows-latest
needs:
- build
strategy:
fail-fast: false
matrix:
gcc_v: [10,11,12]

steps:
- uses: actions/checkout@v4
Expand All @@ -200,7 +204,7 @@ jobs:
uses: actions/download-artifact@v4
with:
path: ${{ github.workspace }}
merge-multiple: true
pattern: fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe

- name: Get version (normal)
if: github.event_name != 'release'
Expand Down Expand Up @@ -230,7 +234,7 @@ jobs:
- name: Fetch Windows executable
shell: msys2 {0}
run: |
cp fpm-*/fpm*.exe ./ci/fpm.exe
cp fpm-*/fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe ./ci/fpm.exe
- name: Fetch Git for Windows
shell: msys2 {0}
Expand Down

0 comments on commit f796069

Please sign in to comment.