From 4671b69941c1ba19181aa47aecf5a03f63d6fa92 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Mon, 5 Apr 2021 13:17:36 +0100 Subject: [PATCH] Separete ci/pr workflows --- .github/workflows/ci.yml | 3 --- .github/workflows/pr.yml | 42 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b231c378..6002ec98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,6 @@ on: - master paths-ignore: - '.github/**' - pull_request: - branches: - - master jobs: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 00000000..0d97c440 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,42 @@ +name: PR + +on: + pull_request: + branches: + - master + +jobs: + + # build and test, then upload logs if failure + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + java: [1.8, 11] + fail-fast: false + + steps: + - uses: actions/checkout@v2 + - name: Setup JDK + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: Build with Gradle + run: ./gradlew clean build + - name: Tar Build Logs + if: ${{ failure() }} + run: | + mkdir -p build + tar \ + -zc \ + --ignore-failed-read \ + --file build/buildlogs.tar.gz \ + */build/reports \ + */*/build/reports + - name: Upload Build Logs + if: ${{ failure() }} + uses: actions/upload-artifact@v2 + with: + name: buildlogs + path: build/buildlogs.tar.gz