Skip to content

Dev

Dev #5

Workflow file for this run

name: iOS CI
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- 'master'
- 'main'
tags-ignore:
- '**'
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- docs
- androidApp
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx6g -Dfile.encoding=UTF-8 -Dorg.gradle.daemon=false -Dorg.gradle.vfs.watch=false -Dkotlin.incremental=false"
jobs:
build_ios:
name: Build iOS app
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: iosApp/Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Initialize pods
run: ./gradlew shared:podInstall
- name: Build with Xcode
working-directory: ./iosApp
run: xcodebuild -workspace iosApp.xcworkspace -scheme iosApp -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15'