Update Kotlin, KSP and Compose Compiler #481
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS Build CI | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: [ '**.md', '**.MD' ] | |
pull_request: | |
branches: [ master ] | |
paths-ignore: [ '**.md', '**.MD' ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build default scheme using any available iPhone simulator | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
# - name: Make gradlew executable | |
# run: chmod +x ./gradlew | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1.6.0 | |
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@v3 | |
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@v3 | |
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: Gen pod | |
run: ./gradlew :shared:podGenIOS :shared:generateDummyFramework --parallel --stacktrace | |
- name: Install Pod | |
run: pod install | |
working-directory: iosApp | |
- name: Build | |
uses: sersoft-gmbh/xcodebuild-action@v3.1.0 | |
with: | |
workspace: iosApp/iosApp.xcworkspace | |
scheme: iosApp | |
action: build | |
sdk: iphonesimulator | |
destination: platform=iOS Simulator,name=iphone-12-pro | |
configuration: Debug | |
build-settings: CODE_SIGNING_REQUIRED=NO | |
- name: Failures report | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: iosSimulatorArm64_generated | |
path: shared/build/skie/binaries/podDebugFramework/DEBUG/iosSimulatorArm64/swift/generated/ |