Skip to content

feat(ci): update iOS simulator target to iPhone 16 #7

feat(ci): update iOS simulator target to iPhone 16

feat(ci): update iOS simulator target to iPhone 16 #7

Workflow file for this run

name: Android CI
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- 'master'
- 'main'
tags-ignore:
- '**'
paths-ignore:
- '.idea/**'
- '.gitattributes'
- '.github/**.json'
- '.gitignore'
- '.gitmodules'
- '**.md'
- 'LICENSE'
- 'NOTICE'
- docs
- iosApp
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_android:
name: Build Android 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
- name: Build with Gradle
run: ./gradlew --scan --stacktrace assembleDebug