-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,7 @@ jobs: | |
os: windows-2019 | ||
label: Win | ||
- name: mac | ||
os: macos-12 | ||
os: macos-13 | ||
label: Mac | ||
|
||
name: Build on ${{ matrix.name }} | ||
|
@@ -108,9 +108,14 @@ jobs: | |
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
python-version: '3.12' | ||
architecture: 'x64' | ||
|
||
- name: Pip | ||
run: | | ||
python -m pip install setuptools | ||
python3 -m pip install setuptools | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
@@ -120,12 +125,6 @@ jobs: | |
git lfs install | ||
git lfs pull | ||
- name: Install Cmake for macOS (because of libpng) | ||
if: matrix.name == 'mac' | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.18.x' | ||
|
||
- name: Install Linux Dependencies | ||
if: matrix.name == 'linux' | ||
run: | | ||
|
@@ -148,7 +147,7 @@ jobs: | |
if [ "${{ matrix.name }}" = "mac" ]; | ||
then | ||
export PACKAGEING_FOR_MAC=1 | ||
sudo xcode-select --switch /Applications/Xcode_13.1.app | ||
sudo xcode-select --switch /Applications/Xcode_14.1.app | ||
fi | ||
python3 build.py || python build.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters