From 8474576c89fafc6febb2c22823540bd6a43910ee Mon Sep 17 00:00:00 2001 From: joffrey-bion Date: Wed, 10 Feb 2021 18:37:42 +0100 Subject: Add CI on non-main branches --- .github/workflows/ci-build.yml | 35 +++++++++++++++++++++++++++++++++++ .github/workflows/pr-build.yml | 32 -------------------------------- 2 files changed, 35 insertions(+), 32 deletions(-) create mode 100644 .github/workflows/ci-build.yml delete mode 100644 .github/workflows/pr-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 00000000..843f0dc0 --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,35 @@ +name: ci-build + +on: + push: + branches-ignore: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up JDK 15 + uses: actions/setup-java@v1.4.3 + with: + java-version: 15 + + - name: Gradle build cache + uses: actions/cache@v2 + with: + path: ~/.gradle/caches + key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }} + restore-keys: ${{ runner.os }}-gradle-build- + + - name: Gradle wrapper cache + uses: actions/cache@v2 + with: + path: ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }} + + - name: Build with Gradle + run: ./gradlew build diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml deleted file mode 100644 index 67a9c9be..00000000 --- a/.github/workflows/pr-build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: pr-build - -on: - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Set up JDK 15 - uses: actions/setup-java@v1.4.3 - with: - java-version: 15 - - - name: Gradle build cache - uses: actions/cache@v2 - with: - path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }} - restore-keys: ${{ runner.os }}-gradle-build- - - - name: Gradle wrapper cache - uses: actions/cache@v2 - with: - path: ~/.gradle/wrapper - key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }} - - - name: Build with Gradle - run: ./gradlew build -- cgit