-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
235 changed files
with
330 additions
and
682 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,96 +1,72 @@ | ||
name: Java CI | ||
name: Grace CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- '[7-9]+.[0-9]+.x' | ||
- 'release/2022.2.3' | ||
pull_request: | ||
branches: | ||
- master | ||
- '[7-9]+.[0-9]+.x' | ||
- 'release/2022.2.3' | ||
workflow_dispatch: | ||
inputs: | ||
message: | ||
description: 'Snapshot information (e.g. New Core Snapshot Tue Dec 15 00:07:18 UTC 2020 f212f54)' | ||
required: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
java: ['8', '11', '14'] | ||
java: ['11'] | ||
env: | ||
WORKSPACE: ${{ github.workspace }} | ||
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | ||
steps: | ||
- name: Print Dispatch Information | ||
if: github.event_name == 'workflow_dispatch' | ||
- name: Checkout repository | ||
env: | ||
DISPATCH_INFORMATION: ${{ github.event.inputs.message }} | ||
run: echo $DISPATCH_INFORMATION | ||
- uses: actions/checkout@v3 | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
- name: Run Tests | ||
if: github.event_name == 'pull_request' | ||
id: tests | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: check -Dgeb.env=chromeHeadless | ||
env: | ||
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | ||
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | ||
- name: Run Build | ||
if: github.event_name == 'push' | ||
id: build | ||
uses: gradle/gradle-build-action@v2 | ||
uses: gradle/gradle-build-action@v3 | ||
with: | ||
arguments: build -x codenarcMain -x codenarcTest -x checkstyleMain -x checkstyleTest | ||
publish: | ||
if: github.event_name == 'push' | ||
needs: ["build"] | ||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
checks: write | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
env: | ||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | ||
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | ||
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
uses: actions/checkout@v4 | ||
with: | ||
arguments: build -Dgeb.env=chromeHeadless | ||
- name: Publish Test Report | ||
if: steps.build.outcome == 'failure' || steps.tests.outcome == 'failure' | ||
uses: scacap/action-surefire-report@v1 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
report_paths: '**/build/test-results/test/TEST-*.xml' | ||
- name: Publish to repo.grails.org | ||
distribution: 'adopt' | ||
java-version: 11 | ||
- name: Generate secring file | ||
env: | ||
SECRING_FILE: ${{ secrets.SECRING_FILE }} | ||
run: echo $SECRING_FILE | base64 -d > ${{ github.workspace }}/secring.gpg | ||
- name: Publish to Sonatype OSSRH | ||
id: publish | ||
uses: gradle/gradle-build-action@v2 | ||
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
uses: gradle/gradle-build-action@v3 | ||
env: | ||
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | ||
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
with: | ||
arguments: -Dorg.gradle.internal.publish.checksums.insecure=true publish | ||
- name: Build Docs | ||
id: docs | ||
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
uses: gradle/gradle-build-action@v2 | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_NEXUS_URL: ${{ secrets.SONATYPE_NEXUS_URL }} | ||
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | ||
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | ||
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }} | ||
SECRING_FILE: ${{ secrets.SECRING_FILE }} | ||
with: | ||
arguments: docs:docs | ||
- name: Determine docs target repository | ||
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
uses: haya14busa/action-cond@v1 | ||
id: docs_target | ||
with: | ||
cond: ${{ github.repository == 'grails/gorm-hibernate5' }} | ||
if_true: "grails/grails-data-mapping" | ||
if_false: ${{ github.repository }} | ||
- name: Publish to Github Pages | ||
if: steps.docs.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
uses: micronaut-projects/github-pages-deploy-action@master | ||
env: | ||
TARGET_REPOSITORY: ${{ steps.docs_target.outputs.value }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: docs/build/docs | ||
DOC_SUB_FOLDER: hibernate | ||
DOC_FOLDER: gh-pages | ||
COMMIT_EMAIL: [email protected] | ||
COMMIT_NAME: Puneet Behl | ||
arguments: -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository |
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.