Skip to content

Commit

Permalink
Only do ucrt64 and mingw64
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Apr 24, 2024
1 parent fdb176a commit 68cb22a
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,36 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: fpm test

msys2:
mingw64:
runs-on: windows-latest
strategy:
matrix:
msystem: [msys, ucrt64, mingw64, clang64]
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
msystem: mingw64
install: >-
mingw-w64-x86_64-gcc-fortran
mingw-w64-x86_64-fpm
- run: fpm test

ucrt64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ucrt64
install: >-
mingw-w64-ucrt-x86_64-gcc-fortran
mingw-w64-ucrt-x86_64-fpm
- run: fpm test

format:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 68cb22a

Please sign in to comment.