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
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ jobs:
MAKEFLAGS: -j4
CC: clang
CXX: clang++
FC: gfortran-15
CMAKE_BUILD_TYPE: ${{matrix.build_type}}
OMPI_MCA_rmaps_base_oversubscribe: 1
PRTE_MCA_rmaps_default_mapping_policy: :oversubscribe
Expand All @@ -124,8 +125,8 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install MPI (macOS)
run: brew install open-mpi
- name: Install MPI (macOS) and doxygen
run: brew install open-mpi doxygen
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ and this project adheres to
different kind happen
* `PDI_STATUS_MSG` has been added to offer an english description of error
codes.
* Added support for MacOS and fixed all CI issues on MacOS, fix
[#688](https://github.com/pdidev/pdi/issues/688)

#### Changed

Expand Down
6 changes: 0 additions & 6 deletions bin/build_and_run_all_tests
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,6 @@ then
CMAKE_FLAGS="${CMAKE_FLAGS} -DBUILD_NETCDF_PARALLEL=OFF"
fi

if [[ "x${PDI_SYSTEM}" =~ ^xmacos ]]
then
# Workaround: not all plugins work on OSX yet (https://github.com/pdidev/pdi/issues/580)
CMAKE_FLAGS="${CMAKE_FLAGS} -DBUILD_BENCHMARKING=OFF -DBUILD_DOCUMENTATION=OFF -DBUILD_FORTRAN=OFF"
fi



# And now for the actual tests
Expand Down
Loading