Skip to content

Commit

Permalink
WIP: Fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Nov 11, 2023
1 parent 8b3b7ad commit c8f6277
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/actions/install-dependencies/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ case "$os" in
else
brew install qt@5 automake
fi

# Install setuptools on Python >= 3.12
# https://github.com/python/cpython/issues/95299
python3 -c 'import setuptools' || python3 -m pip install setuptools
;;

windows*)
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit c8f6277

Please sign in to comment.