Skip to content

Commit

Permalink
ci: install setuptools in macos environment
Browse files Browse the repository at this point in the history
The latest macOS runner updated the version of python to 3.12.0.

This removes the deprecated distutils core module, requiring the "setuptools" package to be installed to provide it.

distutils is a dependency of MoltenVK.
  • Loading branch information
LukeUsher authored Nov 7, 2023
1 parent d2e20f0 commit 6fbea44
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
if: runner.os == 'macOS'
run: |
brew install make ninja sdl2
pip install --no-input setuptools
echo "MAKE=gmake" >> $GITHUB_ENV
pushd thirdparty/MoltenVK
./build-moltenvk.sh
Expand Down

0 comments on commit 6fbea44

Please sign in to comment.