Skip to content

Commit

Permalink
just trying to get the GHA to trigger
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Jun 14, 2024
1 parent 38dfc4d commit 3adaee1
Showing 1 changed file with 41 additions and 41 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/build-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@
##

name: "Build Application"
on:
workflow_call:
inputs:
enable-unit-tests:
description: "Unit Testing Enabled"
type: boolean
required: true
default: true
java-distribution:
description: "Java JDK Distribution:"
type: string
required: false
default: "temurin"
java-version:
description: "Java JDK Version:"
type: string
required: false
default: "21.0.1"
enable-spotless-check:
description: "Spotless Check Enabled"
type: boolean
required: false
default: false
on: push
# workflow_call:
# inputs:
# enable-unit-tests:
# description: "Unit Testing Enabled"
# type: boolean
# required: true
# default: true
# java-distribution:
# description: "Java JDK Distribution:"
# type: string
# required: false
# default: "temurin"
# java-version:
# description: "Java JDK Version:"
# type: string
# required: false
# default: "21.0.1"
# enable-spotless-check:
# description: "Spotless Check Enabled"
# type: boolean
# required: false
# default: false

defaults:
run:
Expand All @@ -54,21 +54,21 @@ jobs:
- name: Checkout Code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Expand Shallow Clone for and Spotless
if: ${{ (inputs.enable-unit-tests || inputs.enable-spotless-check) && !cancelled() }}
run: git fetch --unshallow --no-recurse-submodules

- name: Setup Java
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
distribution: ${{ inputs.java-distribution }}
java-version: ${{ inputs.java-version }}

- name: Setup Gradle
uses: gradle/gradle-build-action@29c0906b64b8fc82467890bfb7a0a7ef34bda89e # v3.1.0
with:
cache-read-only: false

- name: Compile
id: gradle-build
run: ${GRADLE_EXEC} assemble --scan
# - name: Expand Shallow Clone for and Spotless
# if: ${{ (inputs.enable-unit-tests || inputs.enable-spotless-check) && !cancelled() }}
# run: git fetch --unshallow --no-recurse-submodules
#
# - name: Setup Java
# uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
# with:
# distribution: ${{ inputs.java-distribution }}
# java-version: ${{ inputs.java-version }}
#
# - name: Setup Gradle
# uses: gradle/gradle-build-action@29c0906b64b8fc82467890bfb7a0a7ef34bda89e # v3.1.0
# with:
# cache-read-only: false
#
# - name: Compile
# id: gradle-build
# run: ${GRADLE_EXEC} assemble --scan

0 comments on commit 3adaee1

Please sign in to comment.