Skip to content
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
7 changes: 2 additions & 5 deletions .github/workflows/dependencies/dependencies_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@
set -eu -o pipefail

brew update
brew install gfortran || true
brew install gcc@15 || true
brew install libomp || true
brew install open-mpi || true
brew install --cc=gcc-15 open-mpi --build-from-source || true
brew install ccache || true

# verify installation
gfortran-14 --version
otool -L $(which gfortran-14)
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
jobs:
# Build all tutorials
tests-macos:
name: AppleClang@15.0 GFortran@14.1 [tutorials]
name: AppleClang@15.0 GFortran@15.1 [tutorials]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -28,7 +28,7 @@ jobs:
-DAMReX_FORTRAN_INTERFACES=ON \
-DAMReX_EB=ON \
-DAMReX_PARTICLES=ON \
-DCMAKE_Fortran_COMPILER=$(which gfortran-14) \
-DCMAKE_Fortran_COMPILER=$(which gfortran-15) \
-DCMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)
cmake --build build --parallel 2

Expand All @@ -40,7 +40,7 @@ jobs:
-DAMReX_FORTRAN_INTERFACES=ON \
-DAMReX_EB=ON \
-DAMReX_PARTICLES=ON \
-DCMAKE_Fortran_COMPILER=$(which gfortran-14) \
-DCMAKE_Fortran_COMPILER=$(which gfortran-15) \
-DCMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)
cmake --build build --parallel 2

Loading