Update arrowGradleConfig to v0.11.0 #185
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Artifacts for PR | |
on: pull_request | |
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: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'adopt' | |
java-version: '15' | |
- name: Build and test with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: build --scan --stacktrace | |
- name: Upload reports | |
uses: actions/[email protected] | |
with: | |
name: 'reports-${{ matrix.os }}' | |
path: '**/build/reports/**' | |
- name: Stop Gradle daemons | |
run: ./gradlew --stop | |
update_api: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
uses: gradle/[email protected] | |
with: | |
arguments: apiDump | |
- name: Stop Gradle daemons | |
run: ./gradlew --stop | |
- name: "Commit new API files" | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Update API files | |
file_pattern: /**/api/*.api |