Skip to content

Commit

Permalink
Merge pull request #502 from mmuetzel/ci
Browse files Browse the repository at this point in the history
Enable building with Zoltan in CI.
  • Loading branch information
raback authored Jul 31, 2024
2 parents 14ca230 + 20e1422 commit 39a9656
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:

- name: checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: install dependencies
run: |
Expand All @@ -59,7 +61,7 @@ jobs:
-DBLA_VENDOR="OpenBLAS" \
-DWITH_OpenMP=ON \
-DWITH_LUA=ON \
-DWITH_Zoltan=OFF \
-DWITH_Zoltan=ON \
-DWITH_Mumps=ON \
-DWITH_ELMERGUI=ON \
-DCREATE_PKGCONFIG_FILE=ON \
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/full-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:

- name: checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: install dependencies
run: |
Expand All @@ -59,7 +61,7 @@ jobs:
-DBLA_VENDOR="OpenBLAS" \
-DWITH_OpenMP=ON \
-DWITH_LUA=ON \
-DWITH_Zoltan=OFF \
-DWITH_Zoltan=ON \
-DWITH_Mumps=ON \
-DCREATE_PKGCONFIG_FILE=ON \
-DWITH_MPI=ON \
Expand All @@ -70,7 +72,7 @@ jobs:
- name: build
run: |
cd ${GITHUB_WORKSPACE}/build
cmake --build .
cmake --build . -j$(nproc)
- name: install
run: |
Expand All @@ -82,7 +84,7 @@ jobs:
timeout-minutes: 150
run: |
cd ${GITHUB_WORKSPACE}/build
ctest .
ctest . -j$(nproc)
- name: Re-run tests
if: always() && (steps.run-ctest.outcome == 'failure')
Expand Down

0 comments on commit 39a9656

Please sign in to comment.