-
Notifications
You must be signed in to change notification settings - Fork 2
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
5 changed files
with
93 additions
and
185 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,79 +2,85 @@ name: Java CI | |
on: | ||
push: | ||
branches: | ||
- master | ||
- '[4-9]+.[0-9]+.x' | ||
- '[3-9]+.[3-9]+.x' | ||
- '[2020-2024]+.[0-9]+.x' | ||
pull_request: | ||
branches: | ||
- master | ||
- '[4-9]+.[0-9]+.x' | ||
- '[3-9]+.[3-9]+.x' | ||
- '[2020-2024]+.[0-9]+.x' | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: ['8', '11', '14'] | ||
java: ['11', '14'] | ||
env: | ||
WORKSPACE: ${{ github.workspace }} | ||
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'adopt' | ||
java-version: ${{ matrix.java }} | ||
- name: Run Tests | ||
if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' | ||
id: tests | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: check | ||
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 | ||
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 }} | ||
with: | ||
arguments: build | ||
- name: Publish Test Report | ||
if: steps.build.outcome == 'failure' || steps.tests.outcome == 'failure' | ||
uses: scacap/action-surefire-report@v1 | ||
arguments: build groovydoc | ||
publish: | ||
if: github.event_name == 'push' | ||
needs: ["build"] | ||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
checks: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
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 | ||
if: steps.assemble.outcome == 'success' | ||
uses: gradle/gradle-build-action@v2 | ||
if: steps.build.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
env: | ||
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | ||
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | ||
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 }} | ||
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: -Dorg.gradle.internal.publish.checksums.insecure=true publish | ||
arguments: -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
invoke-third-party-workflows: | ||
if: github.event_name == 'push' | ||
needs: ["build", "publish"] | ||
permissions: | ||
contents: read # to fetch code (actions/checkout) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Extract branch name | ||
if: steps.publish.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
id: extract_branch | ||
run: echo ::set-output name=value::${GITHUB_REF:11} | ||
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | ||
- name: Create Snapshot Message for the Workflow Dispatch | ||
if: steps.publish.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
id: dispatch_message | ||
run: echo ::set-output name=value::{\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"} | ||
- name: Invoke the Java CI workflow in Grails Functional Tests | ||
if: steps.publish.outcome == 'success' && github.event_name == 'push' && matrix.java == '8' | ||
uses: benc-uk/[email protected] | ||
with: | ||
workflow: Java CI | ||
repo: grails/grails3-functional-tests | ||
ref: ${{ steps.extract_branch.outputs.value }} | ||
token: ${{ secrets.GH_TOKEN }} | ||
inputs: ${{ steps.dispatch_message.outputs.value }} | ||
run: echo "value={\"message\":\"New Core Snapshot $(date) - $GITHUB_SHA\"}" >> $GITHUB_OUTPUT |
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 |
---|---|---|
|
@@ -5,14 +5,13 @@ on: | |
push: | ||
branches: | ||
- master | ||
- '[4-9]+.[0-9]+.x' | ||
- '[3-9]+.[3-9]+.x' | ||
- '[2020-2024]+.[0-9]+.x' | ||
workflow_dispatch: | ||
jobs: | ||
release_notes: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Check if it has release drafter config file | ||
id: check_release_drafter | ||
run: | | ||
|
@@ -25,7 +24,7 @@ jobs: | |
- uses: release-drafter/[email protected] | ||
if: steps.check_release_drafter.outputs.has_release_drafter == 'true' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
commitish: ${{ steps.extract_branch.outputs.value }} | ||
# Otherwise: | ||
|
@@ -36,7 +35,7 @@ jobs: | |
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' | ||
id: release_notes | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: ncipollo/release-action@v1 | ||
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' && steps.release_notes.outputs.generated_changelog == 'true' | ||
with: | ||
|
@@ -46,4 +45,4 @@ jobs: | |
name: ${{ env.title }} ${{ steps.release_notes.outputs.next_version }} | ||
tag: v${{ steps.release_notes.outputs.next_version }} | ||
bodyFile: CHANGELOG.md | ||
token: ${{ secrets.GH_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -2,21 +2,25 @@ name: Release | |
on: | ||
release: | ||
types: [published] | ||
permissions: {} | ||
jobs: | ||
release: | ||
permissions: | ||
contents: write # to create release | ||
issues: write # to modify milestones | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: ['8'] | ||
java: ['11'] | ||
env: | ||
GIT_USER_NAME: puneetbehl | ||
GIT_USER_EMAIL: [email protected] | ||
GRADLE_OPTS: -Xmx1500m -Dfile.encoding=UTF-8 | ||
GIT_USER_NAME: rainboyan | ||
GIT_USER_EMAIL: [email protected] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
|
@@ -32,16 +36,16 @@ jobs: | |
echo ::set-output name=value::${TARGET_BRANCH} | ||
- name: Set the current release version | ||
id: release_version | ||
run: echo ::set-output name=release_version::${GITHUB_REF:11} | ||
- name: Run pre-release | ||
uses: ./.github/actions/pre-release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
run: echo "release_version=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | ||
- name: Run Assemble | ||
id: assemble | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: assemble | ||
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 }} | ||
- name: Generate secring file | ||
env: | ||
SECRING_FILE: ${{ secrets.SECRING_FILE }} | ||
|
@@ -51,6 +55,9 @@ jobs: | |
if: steps.assemble.outcome == 'success' | ||
uses: gradle/gradle-build-action@v2 | ||
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 }} | ||
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | ||
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | ||
SONATYPE_NEXUS_URL: ${{ secrets.SONATYPE_NEXUS_URL }} | ||
|
@@ -60,63 +67,11 @@ jobs: | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | ||
with: | ||
arguments: -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
- name: Export Gradle Properties | ||
uses: micronaut-projects/github-actions/export-gradle-properties@master | ||
- name: Run post-release | ||
if: steps.publish.outcome == 'success' | ||
uses: ./.github/actions/post-release | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
env: | ||
SNAPSHOT_SUFFIX: -SNAPSHOT | ||
- name: Upload artifacts to the Github release | ||
id: upload_artifact | ||
if: steps.publish.outcome == 'success' | ||
uses: Roang-zero1/github-upload-release-artifacts-action@master | ||
with: | ||
args: build/distributions/grails-${{ steps.release_version.outputs.release_version }}.zip | ||
args: build/distributions/grace-${{ steps.release_version.outputs.release_version }}.zip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create Message for the Grails Documentation Release | ||
if: steps.publish.outcome == 'success' | ||
id: grails_docs_release_message | ||
run: | | ||
echo ::set-output name=value::{\"grails_version\":\"$RELEASE_VERSION\"} | ||
env: | ||
RELEASE_VERSION: ${{ steps.release_version.outputs.release_version }} | ||
- name: Invoke grails-doc release workflow | ||
if: steps.publish.outcome == 'success' | ||
id: grails_doc | ||
uses: benc-uk/[email protected] | ||
with: | ||
workflow: Release | ||
repo: grails/grails-doc | ||
ref: ${{ steps.extract_branch.outputs.value }} | ||
token: ${{ secrets.GH_TOKEN }} | ||
inputs: ${{ steps.grails_docs_release_message.outputs.value }} | ||
- name: Invoke grails-static-website release workflow | ||
if: steps.publish.outcome == 'success' | ||
id: grails_static_website | ||
uses: benc-uk/[email protected] | ||
with: | ||
workflow: Release | ||
repo: grails/grails-static-website | ||
ref: master | ||
token: ${{ secrets.GH_TOKEN }} | ||
inputs: ${{ steps.grails_docs_release_message.outputs.value }} | ||
- name: Grails SDK Minor Release | ||
if: steps.upload_artifact.outcome == 'success' && contains(steps.release_version.outputs.release_version, 'M') || contains(steps.release_version.outputs.release_version, 'RC') | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: sdkMinorRelease | ||
env: | ||
GVM_SDKVENDOR_KEY: ${{ secrets.GVM_SDKVENDOR_KEY }} | ||
GVM_SDKVENDOR_TOKEN: ${{ secrets.GVM_SDKVENDOR_TOKEN }} | ||
- name: Grails SDK Major Release | ||
if: steps.upload_artifact.outcome == 'success' && !contains(steps.release_version.outputs.release_version, 'M') && !contains(steps.release_version.outputs.release_version, 'RC') | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
arguments: sdkMajorRelease | ||
env: | ||
GVM_SDKVENDOR_KEY: ${{ secrets.GVM_SDKVENDOR_KEY }} | ||
GVM_SDKVENDOR_TOKEN: ${{ secrets.GVM_SDKVENDOR_TOKEN }} |
Oops, something went wrong.