-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
36 lines (33 loc) · 852 Bytes
/
build.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
name: build
on: [push, pull_request]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-framework:
runs-on: self-hosted
continue-on-error: true
strategy:
matrix:
destination: [
'macOS',
'iOS Simulator,name=iPhone 15',
'tvOS Simulator,name=Apple TV',
'watchOS Simulator,name=Apple Watch Series 9 (41mm)'
]
xcode: [
'15.2',
'15.3',
'16.0',
]
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: |
eval "$(rbenv init -)"
bundle install
- name: Build framework
env:
DESTINATION: platform=${{ matrix.destination }}
XCODE_VERSION: ${{ matrix.xcode }}
run: bundle exec fastlane build_ci