Skip to content
Merged
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: 8 additions & 3 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ jobs:
name: MacOS
strategy:
matrix:
os: ['macos-12', 'macos-13']
os: ['macos-13', 'macos-14']
env:
BUILD_TYPE : "Release"
runs-on: ${{matrix.os}}
Expand All @@ -440,8 +440,13 @@ jobs:
with:
fetch-depth: 0

- name: Install Python requirements
run: python3 -m pip install -r third_party/requirements.txt
# Latest distros do not allow global pip installation
- name: Install Python requirements in venv
run: |
python3 -m venv .venv
. .venv/bin/activate
echo "$PATH" >> $GITHUB_PATH
python3 -m pip install -r third_party/requirements.txt

- name: Install hwloc
run: brew install hwloc jemalloc tbb
Expand Down
Loading