We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ddd572b + cccc1ef commit ebd6ac4Copy full SHA for ebd6ac4
1 file changed
.github/workflows/basic.yml
@@ -429,7 +429,7 @@ jobs:
429
name: MacOS
430
strategy:
431
matrix:
432
- os: ['macos-12', 'macos-13']
+ os: ['macos-13', 'macos-14']
433
env:
434
BUILD_TYPE : "Release"
435
runs-on: ${{matrix.os}}
@@ -440,8 +440,13 @@ jobs:
440
with:
441
fetch-depth: 0
442
443
- - name: Install Python requirements
444
- run: python3 -m pip install -r third_party/requirements.txt
+ # Latest distros do not allow global pip installation
+ - name: Install Python requirements in venv
445
+ run: |
446
+ python3 -m venv .venv
447
+ . .venv/bin/activate
448
+ echo "$PATH" >> $GITHUB_PATH
449
+ python3 -m pip install -r third_party/requirements.txt
450
451
- name: Install hwloc
452
run: brew install hwloc jemalloc tbb
0 commit comments