2020-12-09 01:07:24 +01:00
|
|
|
name: "CI"
|
|
|
|
|
2020-12-21 23:50:58 +01:00
|
|
|
on: [push, pull_request]
|
2020-12-09 01:07:24 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
if: "!contains(github.event.head_commit.message, 'ci skip') && (!contains(github.event_name, 'pull_request') || (contains(github.event_name, 'pull_request') && github.event.pull_request.head.repo.full_name != github.repository))"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: "Checkout: Code"
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Checkout: Code (PR)"
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
if: "contains(github.event_name, 'pull_request')"
|
|
|
|
with:
|
|
|
|
ref: ${{github.event.pull_request.head.ref}}
|
|
|
|
repository: ${{github.event.pull_request.head.repo.full_name}}
|
|
|
|
|
|
|
|
- name: "Setup: Java"
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.8
|
|
|
|
|
|
|
|
- name: "Cache: Gradle"
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle
|
|
|
|
.gradle
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.*') }}
|
|
|
|
|
|
|
|
- name: "Build: Project with make"
|
|
|
|
run: make clean all
|
|
|
|
|
|
|
|
- name: "Build: List dist files"
|
|
|
|
if: always()
|
|
|
|
run: find dist -type f -maxdepth 2
|
|
|
|
|
|
|
|
- name: "Artifacts: All"
|
|
|
|
if: always()
|
|
|
|
uses: actions/upload-artifact@v2.2.1
|
|
|
|
with:
|
|
|
|
name: "all"
|
|
|
|
path: dist
|
|
|
|
retention-days: 5
|
|
|
|
|
|
|
|
- name: "Artifacts: Android APK"
|
|
|
|
uses: actions/upload-artifact@v2.2.1
|
|
|
|
with:
|
|
|
|
name: "android-apk"
|
|
|
|
path: |
|
|
|
|
dist/*.apk
|