Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use macos-12 runner and Xcode 13.1 when building iOS targets #55

Merged
merged 3 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
default: 'false'

env:
version: m126-d2aaacc35d-2
version: m126-d2aaacc35d-4

jobs:
macos:
Expand All @@ -33,8 +33,8 @@ jobs:
if: ${{ github.event.inputs.skip_release != 'true' && github.ref == 'refs/heads/main' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Select Xcode 14.3.1 for iOS targets
run: sudo xcode-select -s /Applications/Xcode_14.3.1.app
- name: Select Xcode 13.1 for iOS targets
run: sudo xcode-select -s /Applications/Xcode_13.1.app
if: ${{ matrix.target }} == 'ios' || ${{ matrix.target }} == 'iosSim'
- name: Print Xcode version
run: xcodebuild -version
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Prebuilt binaries can be found [in releases](https://github.com/JetBrains/skia-p
## Building locally

```sh
python3 script/checkout.py --version m126-d2aaacc35d-2
python3 script/checkout.py --version m126-d2aaacc35d-4
python3 script/build.py
python3 script/archive.py --version m126-d2aaacc35d-2
python3 script/archive.py --version m126-d2aaacc35d-4
```

To build a debug build:

```sh
python3 script/checkout.py --version m126-d2aaacc35d-2
python3 script/checkout.py --version m126-d2aaacc35d-4
python3 script/build.py --build-type Debug
python3 script/archive.py --version m126-d2aaacc35d-2 --build-type Debug
python3 script/archive.py --version m126-d2aaacc35d-4 --build-type Debug
```
Loading