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

Feature/fix vtk install deadlock in ci #286

Merged
merged 3 commits into from
Oct 22, 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
6 changes: 3 additions & 3 deletions .github/workflows/main-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
vtk: on
int: int32_t

- os: macos-12
- os: macos-14
pattern: off
pointmap: off
scotch: off
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
vtk: off
int: int64_t

- os: macos-12
- os: macos-14
pattern: on
pointmap: on
scotch: on
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
cd build
ctest --timeout 7200 -VV -C ${{ env.BUILD_TYPE }} -j ${{ env.NJOBS }}

- name: Test Mmg with in64_t integers
- name: Test Mmg with int64_t integers
# Run long tests only on ubuntu with pattern off, scotch on, vtk on and int64_t integers
if: matrix.os == 'ubuntu-20.04' && matrix.pattern == 'off' && matrix.scotch == 'on' && matrix.vtk == 'on' && matrix.int == 'int64_t'
run: |
Expand Down
Loading