Skip to content

Commit

Permalink
Merge branch 'develop' into update-mvn-wrapper-mvnd
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemers authored Dec 21, 2024
2 parents 985c805 + 059408b commit 832dffa
Show file tree
Hide file tree
Showing 65 changed files with 703 additions and 339 deletions.
48 changes: 9 additions & 39 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.

name: CI
name: Build & Test

on:
push:
Expand All @@ -30,41 +30,11 @@ jobs:
matrix:
java: [17, 21]

runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v4

- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: maven

- name: Build with Maven
id: mvnBuild
run: ./mvnw verify -Pci -V -B --no-transfer-progress
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

- name: Check License Headers
if: matrix.java == '17'
run: ./mvnw apache-rat:check -V -B --no-transfer-progress

- name: Add PR Comment
if: github.event.pull_request.number != ''
run: |
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
#
# Use GitHub API to get this Job URL
JOBINFO="$(curl --get -Ss -H "Authorization: Bearer ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" "${{ github.api_url }}/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=30")"
echo "${JOBINFO}" | grep "Resource not accessible by integration" && exit 1
eval "$(echo ${JOBINFO} | jq -r --arg job_name '${{ github.job }} (${{ matrix.java }})' '.jobs | map(select(.name == $job_name)) | .[0] | @sh "job_id=\(.id) html_url=\(.html_url)"')"
#
# Use GitHub API to create a comment on the PR
COMMENT="View details about the Java ${{ matrix.java }} build [${{ github.run_number }}](${html_url}) in the [Build Scan](${{ steps.mvnBuild.outputs.buildscan_uri }}) 📊"
COMMENT_URL="${{ github.api_url }}/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
echo "${{ steps.mvnBuild.outputs.buildscan_uri }}"
curl -s -H "Authorization: token ${GITHUB_TOKEN}" -X POST ${COMMENT_URL} -d "{\"body\":\"${COMMENT}\"}"
uses: ./.github/workflows/maven.yml
with:
mvn: verify -Pci
name: "Maven Verify (with Java ${{ matrix.java }}-zulu)"
jobs_path: "build (${{ matrix.java }}) / maven"
java-version: ${{ matrix.java }}
java-distribution: 'zulu'
secrets: inherit
78 changes: 78 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

name: Run Maven

on:
workflow_call:
inputs:
name:
type: string
default: "Running Maven"
jobs_path:
type: string
required: true
description: "The composite job name, e.g. rat / maven, or build (21) / maven"
# TODO: it _should_ be possible to remove this and get the value from the context
mvn:
required: true
type: string
java-version:
required: true
type: string
java-distribution:
required: true
type: string

env:
MAVEN_ARGS: -V -B --no-transfer-progress

jobs:
maven:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java ${{ inputs.java-version }}-${{ inputs.java-distribution }}
uses: actions/setup-java@v4
with:
java-version: ${{ inputs.java-version }}
distribution: ${{ inputs.java-distribution }}
cache: maven

- name: Running Maven
id: mvnBuild
run: ./mvnw ${{ inputs.mvn }}
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}

- name: Add PR Comment
if: github.event.pull_request.number != ''
run: |
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
#
# Use GitHub API to get this Job URL
JOBINFO="$(curl --get -Ss -H "Authorization: Bearer ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" "${{ github.api_url }}/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs?per_page=30")"
echo "${JOBINFO}" | grep "Resource not accessible by integration" && exit 1
echo "${JOBINFO}"
eval "$(echo ${JOBINFO} | jq -r --arg job_name '${{ inputs.jobs_path }}' '.jobs | map(select(.name == $job_name)) | .[0] | @sh "job_id=\(.id) html_url=\(.html_url)"')"
#
# Use GitHub API to create a comment on the PR
COMMENT="View details about the '${{ inputs.name }}' build [${{ github.run_number }}](${html_url}) in the [Build Scan](${{ steps.mvnBuild.outputs.buildscan_uri }}) 📊"
COMMENT_URL="${{ github.api_url }}/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
echo "${{ steps.mvnBuild.outputs.buildscan_uri }}"
curl -s -H "Authorization: token ${GITHUB_TOKEN}" -X POST ${COMMENT_URL} -d "{\"body\":\"${COMMENT}\"}"
40 changes: 14 additions & 26 deletions .github/workflows/cron.yml → .github/workflows/rat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,21 @@
# specific language governing permissions and limitations
# under the License.

name: Nightly Full Build
name: Apache Rat

on:
schedule:
- cron: "0 0 * * *" # nightly
push:
branches: [ develop ]
pull_request:
branches: [ develop ]

jobs:
build:

strategy:
matrix:
java: [17]

runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v4

- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: maven

- name: Build with Maven
run: ./mvnw verify dependency-check:check -Pci -V -B --no-transfer-progress
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
rat:
uses: ./.github/workflows/maven.yml
with:
name: "Apache Rat - Check"
jobs_path: "rat / maven"
mvn: apache-rat:check
java-version: 17
java-distribution: 'zulu'
secrets: inherit
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ if (isGitHubActions()) {
envVariable("GITHUB_HEAD_REF").ifPresent(value ->
buildScan.value("Git branch", value))

// Add workflow name as tag
envVariable("GITHUB_WORKFLOW").ifPresent(value ->
buildScan.tag(value))

// Add Build Scan info to step outputs
envVariable("GITHUB_OUTPUT").ifPresent(value -> {
buildScan.buildScanPublished({
Expand Down
4 changes: 2 additions & 2 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
<extension>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>1.21.4</version>
<version>1.22.2</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
<artifactId>common-custom-user-data-maven-extension</artifactId>
<version>2.0</version>
<version>2.0.1</version>
</extension>
</extensions>
2 changes: 1 addition & 1 deletion .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# specific language governing permissions and limitations
# under the License.
distributionType=only-script
distributionUrl=https://archive.apache.org/dist/maven/mvnd/1.0.0/maven-mvnd-1.0.0-bin.zip
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
Loading

0 comments on commit 832dffa

Please sign in to comment.