This repository has been archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
68 lines (55 loc) · 1.7 KB
/
tests.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
name: Tests
on:
push:
branches: [ main ]
paths:
- '.github/workflows/tests.yml'
- '**/*.swift'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/tests.yml'
- '**/*.swift'
jobs:
tests-macos12:
name: Test Builds - macOS 12
runs-on: macos-12
strategy:
matrix:
xcode: [ "13.1", "13.2.1", "13.3.1", "13.4.1" ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
- name: 🧱 Build
run: make build-release
- name: 🚩 Checkout Vexil
uses: actions/checkout@v2
with:
repository: unsignedapps/Vexil
ref: v1.2.2
path: Vexil
- name: 📦 Package Vexil
run: cd Vexil && ../.build/release/swift-create-xcframework --zip --zip-version 1.2.2 --platform ios --platform macos --platform tvos --platform watchos
tests-macos11:
name: Test Builds - macOS 11
runs-on: macos-11.0
strategy:
matrix:
xcode: [ "12.4", "12.5.1", "13.0", "13.1", "13.2" ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
steps:
- name: 🛒 Checkout
uses: actions/checkout@v2
- name: 🧱 Build
run: make build-release
- name: 🚩 Checkout Vexil
uses: actions/checkout@v2
with:
repository: unsignedapps/Vexil
ref: v1.2.2
path: Vexil
- name: 📦 Package Vexil
run: cd Vexil && ../.build/release/swift-create-xcframework --zip --zip-version 1.2.2 --platform ios --platform macos --platform tvos --platform watchos