From f41a7bab4aa57a5a70e485153199e3907f5f5407 Mon Sep 17 00:00:00 2001 From: firewave Date: Thu, 25 Jul 2024 00:35:13 +0200 Subject: [PATCH] s --- .github/workflows/CI-unixish.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/CI-unixish.yml b/.github/workflows/CI-unixish.yml index 46fd6a1d6930..79afa013339a 100644 --- a/.github/workflows/CI-unixish.yml +++ b/.github/workflows/CI-unixish.yml @@ -369,12 +369,21 @@ jobs: brew install coreutils python3 pcre gnu-sed - name: Install missing Python packages + if: matrix.os == 'macos-12' || matrix.os == 'macos-13' run: | python3 -m pip install pip --upgrade python3 -m pip install pytest python3 -m pip install pytest-timeout python3 -m pip install psutil + - name: Install missing Python packages (macos) + if: matrix.os == 'macos-14' + run: | + brew install pipx + pipx install pytest + pipx install pytest-timeout + pipx install psutil + - name: Build cppcheck run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"