Skip to content

Commit

Permalink
Merge pull request #570 from mmuetzel/ci-mingw
Browse files Browse the repository at this point in the history
Optionally build with external (P)ARPACK in CI on Windows/MinGW.
  • Loading branch information
raback authored Sep 30, 2024
2 parents 8f989c8 + 31d3b0a commit 9c43e9b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-windows-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

runs-on: windows-latest

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

defaults:
run:
Expand All @@ -31,10 +31,11 @@ jobs:
matrix:
# msystem: [MINGW64, CLANG64]
msystem: [MINGW64]
umfpack: [internal, external]
dependencies: [bundled, external]
include:
- umfpack: external
umfpack-cmake-flags: "-DEXTERNAL_UMFPACK=ON"
- dependencies: external
external-packages: parpack:p
external-cmake-flags: -DEXTERNAL_UMFPACK=ON -DEXTERNAL_ARPACK=ON -DEXTERNAL_PARPACK=ON

steps:
- name: get CPU name
Expand Down Expand Up @@ -83,6 +84,7 @@ jobs:
unixodbc:p
utf8cpp:p
opencascade:p
${{ matrix.external-packages }}
- name: install MSMPI
uses: mpi4py/setup-mpi@v1
Expand Down Expand Up @@ -121,7 +123,7 @@ jobs:
-DWITH_MATC=ON \
-DWITH_PARAVIEW=ON \
-DCREATE_PKGCONFIG_FILE=ON \
${{ matrix.umfpack-cmake-flags }} \
${{ matrix.external-cmake-flags }} \
..
- name: build
Expand Down

0 comments on commit 9c43e9b

Please sign in to comment.