Skip to content

Commit

Permalink
using Philips instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
MarDiehl committed Nov 25, 2023
1 parent f251cb4 commit b11c282
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/Fortran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ jobs:
path: download
key: petsc-${{ env.PETSC_VERSION }}.tar.gz

- name: install prerequisites
run: |
brew install pkg-config make cmake zlib wget openmpi fftw hdf5-mpi
- name: PETSc - Download
if: steps.petsc-download.outputs.cache-hit != 'true'
run: |
Expand All @@ -130,9 +134,10 @@ jobs:
- name: PETSc - Installation
run: |
cd petsc-${PETSC_VERSION}
./configure
--download-fftw --download-hdf5 --download-zlib --download-make \
--download-hdf5-fortran-bindings=1 --with-mpi-f90module-visibility=1
./configure \
--with-zlib-dir=$(brew --prefix zlib) \
--with-fftw-dir=$(brew --prefix fftw) \
--with-hdf5-dir=$(brew --prefix hdf5-mpi) --with-hdf5-fortran-bindings=1
make all
- name: DAMASK - Compile
Expand Down

0 comments on commit b11c282

Please sign in to comment.