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
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
include:
- os: ubuntu-latest
compiler: gcc-11
- os: macos-latest
compiler: gcc-15

steps:
- uses: actions/checkout@v4
Expand All @@ -29,12 +27,7 @@ jobs:
environment-file: environment.yml
python-version: '3.11'
auto-update-conda: true

- name: Install dependencies via conda-forge
shell: bash -l {0}
run: |
conda install -y -c conda-forge compilers openmpi "hdf5=*=mpi_openmpi*" "fftw=*=mpi_openmpi*" cmake doxygen git


- name: Build PFUnit
shell: bash -l {0}
run: |
Expand Down
13 changes: 13 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: puffin
channels:
- conda-forge
dependencies:
- compilers
- openmpi
- hdf5=*=mpi_openmpi*
- fftw=*=mpi_openmpi*
- cmake
- doxygen
- git
- python=3.11
- zlib
Loading