-
-
Notifications
You must be signed in to change notification settings - Fork 450
69 lines (67 loc) · 1.8 KB
/
combined.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: combined-jobs
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize ]
jobs:
build_with_15_0_OS64COMBINED:
name: "Xcode version 15.0, Target iOS Combined [x86_64, arm64] Target SDK 15.0"
runs-on: macos-13
env:
PLATFORM: OS64COMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: "15.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
run: ./.github/build.sh
build_with_15_0_WATCHOSCOMBINED:
name: "Xcode version 15.0, Target watchOS Combined [armv7k, arm64_32, x86_64] Target SDK 7.0"
runs-on: macos-13
env:
PLATFORM: WATCHOSCOMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: "7.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
run: ./.github/build.sh
build_with_15_0_TVOSCOMBINED:
name: "Xcode version 15.0, Target tvOS Combined [arm64, x86_64] Target SDK 14.0"
runs-on: macos-13
env:
PLATFORM: TVOSCOMBINED
USE_NEW_BUILD: 1
DEPLOYMENT_TARGET: "14.0"
USE_XCODE: 1
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
run: ./.github/build.sh
build_with_15_0_OS64_LIBCURL:
name: "Xcode version 15.0, Target iOS [arm64, x86_64] Target SDK 17.0 [libCURL example]"
runs-on: macos-13
env:
PLATFORM: OS64COMBINED
DEPLOYMENT_TARGET: "17.0"
USE_XCODE: 1
BUILD_CURL: 1
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Build
run: ./.github/build.sh