-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.05 KB
/
ci.yml
File metadata and controls
39 lines (32 loc) · 1.05 KB
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
name: CI
permissions: {}
on:
pull_request:
push:
branches:
- alpha
- beta
- main
- renovate/**
jobs:
ci-optimization:
name: CI optimization
uses: dargmuesli/github-actions/.github/workflows/ci-optimization.yml@d8fbc998656a0a3476bfdb091c216c3cf78cdc94 # 5.1.1
permissions:
pull-requests: read
build:
needs: ci-optimization
name: Build iOS (simulator)
runs-on: macos-26 # change back to macos-latest once v26 is default
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Ruby
uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
- name: Install CocoaPods
run: |
sudo gem install cocoapods xcpretty
- name: Build workspace on iOS Simulator
run: |
set -o pipefail
xcodebuild -workspace vibetype.xcworkspace -scheme vibetype -destination 'platform=iOS Simulator,name=iPhone 17' -configuration Release clean build | xcpretty