Merge pull request #1851 from grails/renovate/com.gradle.develocity-3.x #1048
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: Java CI | |
on: | |
push: | |
branches: | |
- '[7-9]+.[0-9]+.x' | |
pull_request: | |
branches: | |
- '[7-9]+.[0-9]+.x' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: Run Build | |
id: build | |
run: ./gradlew build | |
env: | |
DEVELOCITY_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
DEVELOCITY_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
publish: | |
if: github.event_name == 'push' | |
needs: ["build"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: Publish to Artifactory (repo.grails.org) | |
run: ./gradlew -Dorg.gradle.internal.publish.checksums.insecure=true publish | |
env: | |
DEVELOCITY_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
DEVELOCITY_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
trigger-build-gorm-impls: | |
if: github.event_name == 'push' | |
needs: ["build", "publish"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract branch name | |
id: extract_branch | |
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | |
- name: Create Snapshot Message for the Workflow Dispatch | |
id: dispatch_message | |
run: echo "value={\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"}" >> $GITHUB_OUTPUT | |
- name: Invoke the Java CI workflow in GORM Hibernate5 | |
uses: benc-uk/[email protected] | |
with: | |
workflow: Java CI | |
repo: grails/gorm-hibernate5 | |
ref: ${{ steps.extract_branch.outputs.value }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Invoke the Java CI workflow in GORM Hibernate6 | |
uses: benc-uk/[email protected] | |
with: | |
workflow: Java CI | |
repo: grails/gorm-hibernate6 | |
ref: ${{ steps.extract_branch.outputs.value }} | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Invoke the Java CI workflow in GORM MongoDB | |
uses: benc-uk/[email protected] | |
with: | |
workflow: Java CI | |
repo: grails/gorm-mongodb | |
ref: ${{ steps.extract_branch.outputs.value }} | |
token: ${{ secrets.GH_TOKEN }} | |
inputs: ${{ steps.dispatch_message.outputs.value }} | |
- name: Invoke the Java CI workflow in GORM Neo4j | |
uses: benc-uk/[email protected] | |
with: | |
workflow: Java CI | |
repo: grails/gorm-neo4j | |
ref: ${{ steps.extract_branch.outputs.value }} | |
token: ${{ secrets.GH_TOKEN }} |