2021-04-18 16:21:58 +02:00
|
|
|
name: CI build
|
2021-02-13 12:48:57 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-07-31 22:45:45 +02:00
|
|
|
name: Build project
|
2021-02-13 12:48:57 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Cancel previous runs
|
2021-06-04 11:05:20 +02:00
|
|
|
uses: styfle/cancel-workflow-action@0.9.0
|
2021-02-13 12:48:57 +01:00
|
|
|
with:
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
|
2021-10-09 21:19:22 +02:00
|
|
|
- name: Clone repo
|
2021-02-13 12:48:57 +01:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2021-10-09 21:19:22 +02:00
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
2021-07-31 22:45:45 +02:00
|
|
|
- name: Set up JDK
|
2021-02-13 12:48:57 +01:00
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
2021-07-31 22:45:45 +02:00
|
|
|
java-version: 11
|
2021-02-13 12:48:57 +01:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.gradle
|
|
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2021-07-31 22:45:45 +02:00
|
|
|
- name: Generate android.jar
|
2021-02-13 12:48:57 +01:00
|
|
|
run: |
|
2021-07-31 22:45:45 +02:00
|
|
|
./AndroidCompat/getAndroid.sh
|
2021-02-13 12:48:57 +01:00
|
|
|
|
2021-07-31 22:45:45 +02:00
|
|
|
- name: Build project
|
2021-11-28 23:03:58 +01:00
|
|
|
uses: gradle/gradle-command-action@v2
|
2021-05-24 14:39:05 +02:00
|
|
|
with:
|
2021-10-09 21:19:22 +02:00
|
|
|
arguments: :server:shadowJar
|