-
-
Notifications
You must be signed in to change notification settings - Fork 450
35 lines (33 loc) · 911 Bytes
/
catalyst.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: catalyst-jobs
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize ]
jobs:
build_with_13_1_MAC_CATALYST:
name: "Xcode version 13.1, Target macOS Catalyst on Intel CPUs [x86_64] Target SDK 13.1"
runs-on: macos-11
env:
PLATFORM: MAC_CATALYST
DEPLOYMENT_TARGET: "13.1"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '13.1'
- name: Build
run: ./.github/build.sh
build_with_13_4_MAC_CATALYST_ARM64:
name: "Xcode version 15.0, Target macOS Catalyst on Apple Silicon [arm64] Target SDK 13.1"
runs-on: macos-13
env:
PLATFORM: MAC_CATALYST_ARM64
DEPLOYMENT_TARGET: "13.1"
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
run: ./.github/build.sh