Skip to content

Commit 16d0e4b

Browse files
committed
Merge branch '1804' of https://github.com/Lord-Grey/hyperion.ng into 1804
2 parents 6310cf9 + 12048b5 commit 16d0e4b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/qt5_6.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
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

0 commit comments

Comments
 (0)