Skip to content

Commit

Permalink
Add fpm tests on mingw64 and ucrt64
Browse files Browse the repository at this point in the history
  • Loading branch information
minhqdao committed Jul 31, 2024
1 parent 2efd2e0 commit 7bd6829
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,36 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: fpm test

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

fpm-test-ucrt64-gcc:
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

make-test:
strategy:
fail-fast: false
Expand Down

0 comments on commit 7bd6829

Please sign in to comment.