2020-08-11 10:44:45 -07:00
|
|
|
name: Run Android build
|
|
|
|
|
|
|
|
on:
|
2024-08-09 13:20:17 -07:00
|
|
|
workflow_dispatch:
|
2020-08-11 10:44:45 -07:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'dist/**.js'
|
|
|
|
|
|
|
|
jobs:
|
2021-02-02 15:33:00 -08:00
|
|
|
build:
|
2020-08-11 10:44:45 -07:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- windows-latest
|
|
|
|
- macos-latest
|
2022-04-21 20:28:18 -07:00
|
|
|
|
|
|
|
# Disabled, because daveol/SampleApplication is missing
|
|
|
|
if: ${{ false }}
|
|
|
|
|
2020-08-11 10:44:45 -07:00
|
|
|
steps:
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
|
|
|
repository: daveol/SampleApplication
|
|
|
|
|
2023-11-21 11:25:09 -08:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
|
|
|
path: ./build/
|
|
|
|
|
2023-09-24 17:03:19 -07:00
|
|
|
- name: Set up JDK 17
|
2023-12-04 08:51:26 -08:00
|
|
|
uses: actions/setup-java@v4
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2023-09-24 17:03:19 -07:00
|
|
|
java-version: 17
|
2023-09-24 17:53:00 -07:00
|
|
|
distribution: 'temurin'
|
2020-08-11 10:44:45 -07:00
|
|
|
|
|
|
|
- name: Setup Android SDK
|
|
|
|
id: 'setup-android'
|
|
|
|
uses: ./build/
|
|
|
|
|
|
|
|
- name: Build SampleApplication
|
|
|
|
if: runner.os != 'windows'
|
|
|
|
run: ./gradlew --no-daemon build
|
|
|
|
|
|
|
|
- name: Build SampleApplication (Windows)
|
|
|
|
if: runner.os == 'windows'
|
|
|
|
run: .\gradlew.bat --no-daemon build
|