-
Notifications
You must be signed in to change notification settings - Fork 27
70 lines (63 loc) · 2.13 KB
/
ios-build.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
name: iOS Build CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
build:
name: Build default scheme using any available iPhone simulator
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 22
- name: Setup Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: 'latest-stable'
- name: Prepare and open Simulator
run: |
xcrun simctl create iphone-12-pro "iPhone 12 Pro"
xcrun simctl boot iphone-12-pro
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
- name: Cache gradle, wrapper and buildSrc
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Cache konan
uses: actions/cache@v4
with:
path: |
~/.konan/cache
~/.konan/dependencies
~/.konan/kotlin-native-macos*
~/.konan/kotlin-native-mingw*
~/.konan/kotlin-native-windows*
~/.konan/kotlin-native-linux*
~/.konan/kotlin-native-prebuilt-macos*
~/.konan/kotlin-native-prebuilt-mingw*
~/.konan/kotlin-native-prebuilt-windows*
~/.konan/kotlin-native-prebuilt-linux*
key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-konan-
- name: Build
uses: sersoft-gmbh/[email protected]
with:
project: sample/ios/ios.xcodeproj
scheme: ios
action: build
sdk: iphonesimulator
destination: platform=iOS Simulator,name=iphone-12-pro
configuration: Debug
build-settings: CODE_SIGNING_REQUIRED=NO