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

Upgrading macOS version in the test_macos.yml (addresses #278) #279

Merged
merged 3 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: macOS 12
name: macOS
on: [push, pull_request]
jobs:
test:
runs-on: macos-12
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install MacOS dependencies
Expand All @@ -12,6 +12,12 @@ jobs:
brew install lcov
sudo ln -s /usr/local/opt/qt5/mkspecs /usr/local/mkspecs
sudo ln -s /usr/local/opt/qt5/plugins /usr/local/plugins
# Install Miniconda
- name: Install Miniconda
run: |
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh -b -p $HOME/miniconda
echo "$HOME/miniconda/bin" >> $GITHUB_PATH
- name: Build svZeroDSolver
run: |
git clone https://github.com/SimVascular/svZeroDSolver.git
Expand All @@ -38,4 +44,4 @@ jobs:
- name: Run unit tests
run: |
cd build/svFSI-build/Source/svFSI
ctest --verbose
ctest --verbose
4 changes: 2 additions & 2 deletions tests/cases/fluid/newtonian/svFSIplus.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<Coupled> true </Coupled>
<Min_iterations> 1 </Min_iterations>
<Max_iterations> 4 </Max_iterations>
<Max_iterations> 10 </Max_iterations>
<Tolerance> 1e-11 </Tolerance>
<Backflow_stabilization_coefficient> 0.2 </Backflow_stabilization_coefficient>

Expand All @@ -69,7 +69,7 @@
<Preconditioner> fsils </Preconditioner>
</Linear_algebra>
<Max_iterations> 100 </Max_iterations>
<Tolerance> 1e-12 </Tolerance>
<Tolerance> 1e-14 </Tolerance>
</LS>

<Add_BC name="lumen_inlet" >
Expand Down
Loading