Skip to content

Merge branch '1.18.2' into 1.20.1 #4

Merge branch '1.18.2' into 1.20.1

Merge branch '1.18.2' into 1.20.1 #4

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Build Test
on:
push:
branches: [ "master", "main", "dev", "1.20.1", "1.19.2", "1.18.2", "1.16.5" ]
pull_request:
branches: [ "master", "main", "dev", "1.20.1", "1.19.2", "1.18.2", "1.16.5" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
- name: Generate IntelliJ runs
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: genIntellijRuns --parallel
- name: Generate Eclipse runs
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: genEclipseRuns --parallel
- name: Generate Eclipse runs
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: genVSCodeRuns --parallel
- name: Build Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build --parallel