Update Freeletics Gradle Plugin to v0.17.1 #836
Workflow file for this run
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' | |
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/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@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/xcodebuild-action@v3.2.0 | |
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 |