-
-
Notifications
You must be signed in to change notification settings - Fork 603
44 lines (41 loc) · 976 Bytes
/
ci-xcode.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
name: CI (Xcode)
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
xcode_sonoma:
name: Xcode ${{ matrix.xcode }} (Xcode Project)
runs-on: macos-14
strategy:
matrix:
xcode: ["15.0.1", "15.1", "15.2"]
fail-fast: false
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app"
steps:
- uses: actions/checkout@v4
- run: ./test macos
- run: ./test ios
- run: ./test tvos
- run: ./test watchos
xcode_spm:
name: Xcode ${{ matrix.xcode }} (Swift Package)
runs-on: macos-14
strategy:
matrix:
xcode: ["15.0.1", "15.1", "15.2"]
fail-fast: false
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app"
steps:
- uses: actions/checkout@v4
- run: ./test macos_xcodespm
- run: ./test ios_xcodespm
- run: ./test tvos_xcodespm
- run: ./test watchos_xcodespm