We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5464e33 commit 0540be4Copy full SHA for 0540be4
.github/scripts/build_app.sh
.github/workflows/Build.yml
@@ -5,6 +5,14 @@ jobs:
5
build:
6
name: Building SCLAlertView
7
runs-on: macos-15
8
+ strategy:
9
+ matrix:
10
+ scheme: [
11
+ SCLAlertView
12
+ ]
13
+ destination: [
14
+ 'platform=iOS Simulator,name=iPhone 16,OS=26.1'
15
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v4
@@ -20,5 +28,9 @@ jobs:
20
28
ruby-version: 3.1.2
21
29
bundler-cache: true
22
30
23
- - name: Building iOS app
24
- run: exec ./.github/scripts/build_app.sh
31
+ - name: Building ${{ matrix.scheme }} on ${{ matrix.destination }}
32
+ run: |
33
+ set -o pipefail && xcodebuild -project SCLAlertView.xcodeproj \
34
+ -scheme ${{ matrix.scheme }} \
35
+ -destination '${{ matrix.destination }}' \
36
+ clean build | xcbeautify --renderer github-actions
0 commit comments