2021-04-18 16:21:58 +02:00
|
|
|
name: CI build
|
2021-02-13 12:48:57 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check_wrapper:
|
|
|
|
name: Validate Gradle Wrapper
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Validate Gradle Wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
|
|
|
build:
|
2021-05-17 22:13:21 +02:00
|
|
|
name: Build artifacts and deploy preview
|
2021-02-13 12:48:57 +01:00
|
|
|
needs: check_wrapper
|
|
|
|
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Cancel previous runs
|
|
|
|
uses: styfle/cancel-workflow-action@0.5.0
|
|
|
|
with:
|
|
|
|
access_token: ${{ github.token }}
|
|
|
|
|
|
|
|
- name: Checkout master branch
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: master
|
|
|
|
path: master
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK 1.8
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.8
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
mkdir -p ~/.gradle
|
|
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Download android.jar
|
|
|
|
run: |
|
|
|
|
cd master
|
|
|
|
curl https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar -o AndroidCompat/lib/android.jar
|
|
|
|
|
2021-02-13 13:00:15 +01:00
|
|
|
- name: Cache node_modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
**/react/node_modules
|
|
|
|
key: ${{ runner.os }}-${{ hashFiles('**/react/yarn.lock') }}
|
|
|
|
|
2021-05-17 08:50:24 +02:00
|
|
|
- name: Build and copy webUI, Build Jar
|
2021-02-13 12:48:57 +01:00
|
|
|
uses: eskatos/gradle-command-action@v1
|
|
|
|
with:
|
|
|
|
build-root-directory: master
|
|
|
|
wrapper-directory: master
|
2021-05-17 09:29:59 +02:00
|
|
|
arguments: :webUI:copyBuild :server:shadowJar --stacktrace
|
2021-02-13 12:48:57 +01:00
|
|
|
wrapper-cache-enabled: true
|
|
|
|
dependencies-cache-enabled: true
|
2021-04-10 07:24:03 +02:00
|
|
|
configuration-cache-enabled: true
|
|
|
|
|
2021-05-17 08:58:26 +02:00
|
|
|
- name: make windows package
|
|
|
|
run: |
|
|
|
|
cd master/scripts
|
|
|
|
./windows-bundler.sh
|
|
|
|
|
2021-04-10 07:27:02 +02:00
|
|
|
- name: Checkout preview branch
|
2021-04-10 07:24:03 +02:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2021-04-10 07:27:02 +02:00
|
|
|
ref: preview
|
|
|
|
path: preview
|
2021-04-10 07:24:03 +02:00
|
|
|
|
2021-04-10 07:27:02 +02:00
|
|
|
- name: Deploy preview
|
2021-04-10 07:24:03 +02:00
|
|
|
run: |
|
2021-05-17 08:50:24 +02:00
|
|
|
./master/.github/scripts/commit-preview.sh
|