61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
name: android
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "examples/simple-chatbot/client/android/**"
|
|
- "examples/p2p-webrtc/video-transform/client/android/**"
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
paths:
|
|
- "examples/simple-chatbot/client/android/**"
|
|
- "examples/p2p-webrtc/video-transform/client/android/**"
|
|
workflow_dispatch:
|
|
inputs:
|
|
sdk_git_ref:
|
|
type: string
|
|
description: "Which git ref of the app to build"
|
|
|
|
concurrency:
|
|
group: build-android-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
sdk:
|
|
name: "Demo apps"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.inputs.sdk_git_ref || github.ref }}
|
|
|
|
- name: "Install Java"
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '17'
|
|
|
|
- name: Example app: Simple Chatbot
|
|
working-directory: examples/simple-chatbot/client/android
|
|
run: ./gradlew :simple-chatbot-client:assembleDebug
|
|
|
|
- name: Upload Simple Chatbot APK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Simple Chatbot Android Client
|
|
path: examples/simple-chatbot/client/android/simple-chatbot-client/build/outputs/apk/debug/simple-chatbot-client-debug.apk
|
|
|
|
- name: Example app: Small WebRTC Client
|
|
working-directory: examples/p2p-webrtc/video-transform/client/android
|
|
run: ./gradlew :small-webrtc-client:assembleDebug
|
|
|
|
- name: Upload Small WebRTC APK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Small WebRTC Android Client
|
|
path: examples/p2p-webrtc/video-transform/client/android/small-webrtc-client/build/outputs/apk/debug/small-webrtc-client-debug.apk
|