TEST to look at Gh build vs tip #1877
Workflow file for this run
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
# 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 PCGen with Gradle | |
on: | |
push: | |
branches: [ "gh_build" ] # use the current branch for testing purposes only | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
cache-dependency-path: | | |
build.gradle | |
code/gradle/autobuild.gradle | |
code/gradle/distribution.gradle | |
code/gradle/release.gradle | |
code/gradle/reporting.gradle | |
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. | |
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
cache-disabled: false | |
cache-read-only: false | |
cache-overwrite-existing: true | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
build/classes | |
build/jre | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Build with Gradle Wrapper | |
run: ./gradlew build test slowtest | |
- name: Publish Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
build/test-results/**/*.xml | |
build/test-results/**/*.trx | |
build/test-results/**/*.json | |
# - name: Upload build artifacts | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: Package | |
# path: build/libs |