Skip to content

Commit

Permalink
Merge pull request #39 from minhqdao/add-tests-for-mingw-and-ucrt
Browse files Browse the repository at this point in the history
Add tests for `mingw64` and `ucrt64`
  • Loading branch information
minhqdao authored Jul 31, 2024
2 parents 2efd2e0 + 59a3387 commit 2e941a9
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 2e941a9

Please sign in to comment.