We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 415ec25 commit f4acf4fCopy full SHA for f4acf4f
1 file changed
.github/workflows/CI-unixish.yml
@@ -372,12 +372,21 @@ jobs:
372
brew install coreutils python3 pcre gnu-sed
373
374
- name: Install missing Python packages
375
+ if: matrix.os == 'macos-12' || matrix.os == 'macos-13'
376
run: |
377
python3 -m pip install pip --upgrade
378
python3 -m pip install pytest
379
python3 -m pip install pytest-timeout
380
python3 -m pip install psutil
381
382
+ - name: Install missing Python packages (macos)
383
+ if: matrix.os == 'macos-14'
384
+ run: |
385
+ brew install pipx
386
+ pipx install pytest
387
+ pipx install pytest-timeout
388
+ pipx install psutil
389
+
390
- name: Build cppcheck
391
392
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
0 commit comments