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 8, 2024
1 parent 4a3df23 commit fc0d2da
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 @@ -236,7 +240,7 @@ jobs:
echo "================================================================="
find . | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/"
echo "================================================================="
cp fpm-*/fpm*.exe ./ci/fpm.exe
cp fpm-*-windows-*-gcc-${{ matrix.gcc_v }}.exe ./ci/fpm.exe
- name: Fetch Git for Windows
shell: msys2 {0}
Expand Down

0 comments on commit fc0d2da

Please sign in to comment.