mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
4ba30747dc
( according to https://github.com/actions/setup-java#supported-distributions )
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
name: Run Android build
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'dist/**.js'
|
|
- '.github/*.json'
|
|
push:
|
|
branches:
|
|
- main
|
|
- releases/*
|
|
paths:
|
|
- 'dist/**.js'
|
|
- '.github/*.json'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-latest
|
|
|
|
# Disabled, because daveol/SampleApplication is missing
|
|
if: ${{ false }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: daveol/SampleApplication
|
|
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
path: ./build/
|
|
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 17
|
|
distribution: 'temurin'
|
|
|
|
- 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
|