Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI runner that builds with external UMFPACK on MinGW. #510

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build-windows-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:

runs-on: windows-latest

name: MSYS2 (${{ matrix.umfpack }} UMFPACK, ${{ matrix.msystem }})

defaults:
run:
shell: msys2 {0}
Expand All @@ -23,6 +25,11 @@ jobs:
matrix:
# msystem: [MINGW64, CLANG64]
msystem: [MINGW64]
umfpack: [internal, external]
include:
- umfpack: external
umfpack-package: suitesparse:p
umfpack-cmake-flags: "-DEXTERNAL_UMFPACK=ON"

steps:
- name: get CPU name
Expand Down Expand Up @@ -52,6 +59,7 @@ jobs:
parmetis:p
qwt-qt5:p
qt5-script:p
${{ matrix.umfpack-package }}

- name: install MSMPI
uses: mpi4py/setup-mpi@v1
Expand Down Expand Up @@ -82,6 +90,7 @@ jobs:
-DWITH_Mumps=OFF \
-DWITH_ELMERGUI=ON \
-DCREATE_PKGCONFIG_FILE=ON \
${{ matrix.umfpack-cmake-flags }} \
..

- name: build
Expand Down
Loading