2021-05-24 15:20:45 +08:00
|
|
|
name: Build Unsigned
|
2021-06-17 22:10:03 +08:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/**'
|
|
|
|
- '.idea/**'
|
|
|
|
- '.gitignore'
|
|
|
|
- '.gitmodules'
|
|
|
|
- '**.md'
|
|
|
|
- 'LICENSE'
|
|
|
|
- 'NOTICE'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/**'
|
|
|
|
- '.idea/**'
|
|
|
|
- '.gitignore'
|
|
|
|
- '.gitmodules'
|
|
|
|
- '**.md'
|
|
|
|
- 'LICENSE'
|
|
|
|
- 'NOTICE'
|
2021-05-24 15:20:45 +08:00
|
|
|
jobs:
|
|
|
|
BuildUnsigned:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Setup Java
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 11
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16
|
|
|
|
- name: Setup Android SDK
|
|
|
|
uses: android-actions/setup-android@v2
|
|
|
|
- name: Setup Cmake & Ninja
|
|
|
|
uses: lukka/get-cmake@latest
|
|
|
|
- name: Build
|
|
|
|
run: ./gradlew --no-daemon app:assembleRelease
|