Skip to content

Commit

Permalink
android demo action (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
laves authored Dec 23, 2023
1 parent 7724b55 commit 11c85ed
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/android-demos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Android Demos

on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/android-demos.yml'
- 'demo/android/**'
- '!demo/android/EagleDemo/README.md'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '.github/workflows/android-demos.yml'
- 'demo/android/**'
- '!demo/android/EagleDemo/README.md'

jobs:
build-eagle-demo:
runs-on: ubuntu-latest
defaults:
run:
working-directory: demo/android/EagleDemo

steps:
- uses: actions/checkout@v3

- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'

- name: Build
run: ./gradlew assembleDebug

0 comments on commit 11c85ed

Please sign in to comment.