Skip to content
Open
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
9 changes: 6 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,18 @@ jobs:
cmake --build build --parallel 3
ctest --test-dir build --verbose

appleclang14_py:
runs-on: macos-13
appleclang18_py:
runs-on: macos-15
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- name: Install
env: {MACOSX_DEPLOYMENT_TARGET: 11.0}
run: |
set +e
python3 -m pip install -U numpy pandas
python -m venv env
source env/bin/activate
python -m pip install numpy pandas
set -e
- name: Build
env: {CXXFLAGS: -Werror, MACOSX_DEPLOYMENT_TARGET: 11.0}
Expand All @@ -63,6 +65,7 @@ jobs:
# 11.0+ for arm64/aarch64 (M1/M2) builds
run: |
share/openPMD/download_samples.sh build
source env/bin/activate
cmake -S . -B build \
-DopenPMD_USE_PYTHON=ON \
-DopenPMD_USE_MPI=OFF \
Expand Down
Loading