This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ci): introduce a composite workflow
- Loading branch information
Showing
12 changed files
with
129 additions
and
227 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: 'Setup Gradle' | ||
description: 'Checks out the repository and sets up Java and Gradle' | ||
inputs: | ||
token: | ||
description: 'token input for actions/checkout' | ||
required: false | ||
default: ${{ github.token }} | ||
fetch-depth: | ||
description: 'fetch-depth input for actions/checkout' | ||
required: false | ||
default: 1 | ||
ref: | ||
description: 'ref input for actions/checkout' | ||
required: false | ||
java-version: | ||
description: 'java-version input for actions/setup-java' | ||
required: false | ||
default: 20 | ||
gradle-version: | ||
description: 'gradle-version input for actions/setup-java' | ||
required: false | ||
cache-read-only: | ||
description: 'cache-read-only input for gradle/actions/setup-gradle' | ||
required: false | ||
default: ${{ github.event.repository != null && github.ref_name != github.event.repository.default_branch }} | ||
dependency-graph: | ||
description: 'dependency-graph input for gradle/actions/setup-gradle' | ||
required: false | ||
default: 'disabled' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
with: | ||
fetch-depth: ${{ inputs.fetch-depth }} | ||
ref: ${{ inputs.ref }} | ||
token: ${{ inputs.token }} | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ inputs.java-version }} | ||
|
||
- name: Copy CI gradle.properties | ||
shell: bash | ||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 # v3 | ||
with: | ||
add-job-summary: always | ||
cache-read-only: ${{ inputs.cache-read-only }} | ||
dependency-graph: ${{ inputs.dependency-graph }} | ||
gradle-home-cache-cleanup: true | ||
gradle-version: ${{ inputs.gradle-version }} | ||
validate-wrappers: true |
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 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 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 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 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 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
Oops, something went wrong.