-
Notifications
You must be signed in to change notification settings - Fork 21
115 lines (94 loc) · 2.9 KB
/
build-test.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Build and test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
workflow_dispatch:
jobs:
build-and-test-macOS-12:
runs-on: macos-12
strategy:
fail-fast: false
matrix:
xcode-version: [13.4.1, 14.0.1]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies in Gemfile
run: bundle install
- name: Install dependencies in Podfile
working-directory: Example
run: bundle exec pod update
- name: Build and run tests
working-directory: Example
run: bundle exec fastlane scan
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer
- name: Post job cleanup
run: git clean -ffdxq
if: always()
continue-on-error: true
build-and-test-macOS-13:
runs-on: macos-13
strategy:
fail-fast: false
matrix:
xcode-version: [14.2, 14.3]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies in Gemfile
run: bundle install
- name: Install dependencies in Podfile
working-directory: Example
run: bundle exec pod update
- name: Build and run tests
working-directory: Example
run: bundle exec fastlane scan
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer
- name: Post job cleanup
run: git clean -ffdxq
if: always()
continue-on-error: true
build-and-test-macOS-14:
runs-on: macos-14
strategy:
fail-fast: false
matrix:
xcode-version: ['15.1','15.4','16.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies in Gemfile
run: bundle install
- name: Install dependencies in Podfile
working-directory: Example
run: bundle exec pod update
- name: Build and run tests
working-directory: Example
run: bundle exec fastlane scan
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer
- name: Post job cleanup
run: git clean -ffdxq
if: always()
continue-on-error: true
build-and-test-swiftpm:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies in Gemfile
run: bundle install
- name: Build and run tests
run: |
xcodebuild build \
-project "Example/SwiftPM/Lasso-SwiftPM/Lasso-SwiftPM.xcodeproj" \
-scheme "Lasso-SwiftPM" \
-destination "platform=iOS Simulator,name=iPhone 14,OS=17.4"
- name: Post job cleanup
run: git clean -ffdxq
if: always()
continue-on-error: true