Architecture/decompose PR to run CI test #334
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: [ "main" ] | |
paths-ignore: [ '**.md', '**.MD' ] | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: [ '**.md', '**.MD' ] | |
jobs: | |
build: | |
name: Build default scheme using any available iPhone simulator | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
# - name: Make gradlew executable | |
# run: chmod +x ./gradlew | |
- 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/[email protected] | |
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/[email protected] | |
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 | |
- name: Install Pod | |
run: pod install | |
working-directory: iosApp | |
- name: Build | |
uses: sersoft-gmbh/[email protected] | |
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 |