Skip to content

Commit

Permalink
Merge pull request #749 from lukaszstolarczuk/bump-macos
Browse files Browse the repository at this point in the history
[CI] Switch MacOS job from old 12 to new 14
  • Loading branch information
bratpiorka authored Sep 24, 2024
2 parents ddd572b + cccc1ef commit ebd6ac4
Showing 1 changed file with 8 additions and 3 deletions.
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

0 comments on commit ebd6ac4

Please # to comment.