Skip to content

Update dependency gradle to v8.4 #224

Update dependency gradle to v8.4

Update dependency gradle to v8.4 #224

Workflow file for this run

name: "Build main"
on:
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
env:
JAVA_OPTS: -Xms512m -Xmx1024m
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.configureondemand=true -Dorg.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout the repo
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
fetch-depth: 0
- name: Set up Java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 11
- name: Build
uses: gradle/[email protected]
with:
arguments: build --scan --full-stacktrace
- name: Bundle the build report
if: failure()
run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
- name: Upload the build report
if: failure()
uses: actions/upload-artifact@master
with:
name: error-report
path: build-reports.zip