-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (59 loc) · 1.32 KB
/
xcode.yaml
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
name: Xcode-clang
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Matrix with different Xcode versions
jobs:
build-macos10-15:
strategy:
fail-fast: false
matrix:
xcode:
[
11.2.1,
11.3.1,
11.4.1,
11.5.0,
11.6.0,
12.0.1,
12.1.0,
12.2.0,
12.3.0,
12.4.0,
]
os: [macos-10.15]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/clang-build-c
name: Build
with:
xcode-version: ${{ matrix.xcode }}
build-macos-11:
strategy:
fail-fast: false
matrix:
xcode: [13.0.0, 13.1.0, 13.2.1]
os: [macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/clang-build-c
name: Build
with:
platform: ${{ matrix.xcode }}
build-macos-12:
strategy:
fail-fast: false
matrix:
xcode: [13.3.1, 13.4.1, 14.0.1, 14.1.0, 14.2.0]
os: [macos-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/workflows/clang-build-c
name: Build
with:
platform: ${{ matrix.xcode }}