Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/scripts/build_app.sh

This file was deleted.

27 changes: 20 additions & 7 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,33 @@ on: [push, pull_request]
jobs:
build:
name: Building SCLAlertView
runs-on: macos-13
runs-on: macos-15
strategy:
matrix:
scheme: [
SCLAlertView
]
destination: [
'platform=iOS Simulator,name=iPhone 16,OS=26.1'
]
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Xcode version
uses: maxim-lobanov/[email protected]
with:
xcode-version: 15.0.1
xcode-version: 26.1

- name: Install Project Tools
uses: jdx/mise-action@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
experimental: true
ruby-version: 3.1.2
bundler-cache: true

- name: Building iOS app
run: exec ./.github/scripts/build_app.sh
- name: Building ${{ matrix.scheme }} on ${{ matrix.destination }}
run: |
set -o pipefail && xcodebuild -project SCLAlertView.xcodeproj \
-scheme ${{ matrix.scheme }} \
-destination '${{ matrix.destination }}' \
clean build | xcbeautify --renderer github-actions
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ GEM
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.17.2-arm64-darwin)
ffi (1.17.2-x86_64-darwin)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
Expand Down Expand Up @@ -105,6 +106,7 @@ GEM
rexml (>= 3.3.6, < 4.0)

PLATFORMS
arm64-darwin-22
x86_64-darwin-23

DEPENDENCIES
Expand Down
Loading