setup-android/.github/workflows/run.yml

48 lines
985 B
YAML
Raw Permalink Normal View History

2020-08-11 10:44:45 -07:00
name: Run Android build
on:
workflow_dispatch:
2020-08-11 10:44:45 -07:00
push:
paths:
- 'dist/**.js'
jobs:
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/
- name: Set up JDK 17
uses: actions/setup-java@v4
2020-08-11 10:44:45 -07:00
with:
java-version: 17
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