File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 9797
9898 macOS :
9999 name : 🍏 macOS x64
100- runs-on : macos-latest
100+ runs-on : macos-13
101101 steps :
102102 - name : ⬇ Checkout
103103 uses : actions/checkout@v4
@@ -120,10 +120,13 @@ jobs:
120120 brew install qt@${{ inputs.qt_version }} vulkan-headers ninja libftdi || true
121121 echo '::endgroup::'
122122
123- - name : Temporarily downgrade CMake to 3.28.3 # Please remove if GitHub has updated Cmake (greater than 3.30.0)
124- uses : jwlawson/actions-setup-cmake@v2
125- with :
126- cmake-version : ' 3.28.3'
123+ echo '::group::Install official Python'
124+ # We need the official Python, because the GA ones only support newer macOS versions
125+ export PYTHON_VERSION=$(python3 --version | cut -d' ' -f2)
126+ wget -O ${{ github.workspace }}/python.pkg https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg
127+ sudo installer -pkg ${{ github.workspace }}/python.pkg -target /
128+ python3 --version
129+ echo '::endgroup::'
127130
128131 - name : 👷 Build
129132 shell : bash
You can’t perform that action at this time.
0 commit comments