Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions .github/workflows/android-sdk-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Android SDK CI

on:
pull_request:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-*

jobs:
sdk-tests:
name: SDK Tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
filter: tree:0
- run: ./gradlew --no-daemon test
- name: Upload reports
uses: actions/upload-artifact@v4
with:
name: reports
path: |
build/reports/*/*.html
demo-java:
name: Build Demo Java
needs: [sdk-tests]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
filter: tree:0
- run: ./gradlew --no-daemon -p DemoApp/DemoAppJava assembleRelease
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: java-demo-apk
path: DemoApp/DemoAppJava/app/build/outputs/apk/release/*.apk
demo-kotlin:
name: Build Demo Kotlin
needs: [sdk-tests]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
filter: tree:0
- run: ./gradlew --no-daemon -p DemoApp/DemoAppKotlin assembleRelease
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: kotlin-demo-apk
path: DemoApp/DemoAppKotlin/app/build/outputs/apk/release/*.apk