From 33ce159974ce0da9a2677bc92329415edb9b0776 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Sat, 11 Nov 2023 20:07:59 +0100 Subject: [PATCH] WIP: Fix macOS build --- .github/actions/install-dependencies/install-dependencies.sh | 2 +- .github/workflows/c-cpp.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-dependencies/install-dependencies.sh b/.github/actions/install-dependencies/install-dependencies.sh index 46883884b..a64d09fcf 100755 --- a/.github/actions/install-dependencies/install-dependencies.sh +++ b/.github/actions/install-dependencies/install-dependencies.sh @@ -37,7 +37,7 @@ case "$os" in if [ "$build_system" = 'meson' ]; then brew install qt@6 meson else - brew install qt@5 automake + brew install qt@5 automake python-setuptools fi ;; diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 0f017762e..f8c94e6f7 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -10,7 +10,8 @@ jobs: build: strategy: matrix: - os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-12', 'windows-2022'] + #os: ['ubuntu-20.04', 'ubuntu-22.04', 'macos-12', 'windows-2022'] + os: ['macos-12'] build-system: ['autotools', 'meson'] fail-fast: false runs-on: ${{ matrix.os }}