Skip to content

Commit

Permalink
try to avoid adding msystem to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyd2019 committed Jul 26, 2023
1 parent e495b66 commit 144d3ec
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/md5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,13 @@ jobs:
# 64-bit Windows (GNU)
- target: x86_64-pc-windows-gnu
toolchain: 1.48.0 # MSRV
msystem: MINGW64
- target: x86_64-pc-windows-gnu
toolchain: stable
msystem: MINGW64
# 32-bit Windows (GNU)
- target: i686-pc-windows-gnu
toolchain: 1.48.0 # MSRV
msystem: MINGW32
- target: i686-pc-windows-gnu
toolchain: stable
msystem: MINGW32

runs-on: windows-latest
steps:
Expand All @@ -96,7 +92,7 @@ jobs:
targets: ${{ matrix.target }}
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
msystem: MINGW${{ startsWith(matrix.target, 'i686-') && '32' || '64' }}
pacboy: cc:p
path-type: inherit
- run: cargo test --target ${{ matrix.target }} --release
Expand Down

0 comments on commit 144d3ec

Please sign in to comment.