-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Register artifacts, and provide PR decoration
- Loading branch information
Showing
7 changed files
with
439 additions
and
169 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# --------------------------------------------------------------------------- | ||
# 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: Read environment | ||
|
||
description: | | ||
Reads the file .github/workflows/.env and registers all entries in ${GITHUB_ENV} | ||
runs: | ||
using: composite | ||
|
||
steps: | ||
- name: read-env | ||
shell: bash | ||
run: cat .github/workflows/.env >> ${GITHUB_ENV} |
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,6 @@ | ||
JAVA_VERSION=17 | ||
JAVA_DISTRIBUTION=temurin | ||
JAR_ARTIFACT_NAME=jars | ||
PR_NUMBER_ARTIFACT_NAME=pr-number | ||
TEST_REPORTS_ARTIFACT_NAME=test-reports | ||
TEST_REPORT_NAME=Citrus Report |
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,69 @@ | ||
# --------------------------------------------------------------------------- | ||
# 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: Build report | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- "build" | ||
types: | ||
- completed | ||
|
||
permissions: | ||
actions: write | ||
checks: write | ||
pull-requests: write | ||
|
||
env: | ||
TEST_REPORTS_ARTIFACT_NAME: will-be-read-from-env-file | ||
PR_NUMBER_ARTIFACT_NAME: will-be-read-from-env-file | ||
TEST_REPORT_NAME: will-be-read-from-env-file | ||
|
||
|
||
jobs: | ||
report: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup environment variables | ||
uses: ./.github/actions/setup-env | ||
|
||
- name: Download "${{ env.PR_NUMBER_ARTIFACT_NAME }}" from run ${{ github.event.workflow_run.id }} | ||
uses: actions/download-artifact@v4 | ||
with: | ||
github-token: ${{ github.token }} | ||
name: ${{ env.PR_NUMBER_ARTIFACT_NAME }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
|
||
- name: Set PR number | ||
id: get-pr-number | ||
run: | | ||
echo "pr-number=$(cat pr-number.txt)" | tee "${GITHUB_OUTPUT}" | ||
rm -rf pr-number.txt | ||
- name: Publish reports | ||
uses: turing85/publish-report@feature/run-id-and-pr-number | ||
with: | ||
comment-message-pr-number: ${{ steps.get-pr-number.outputs.pr-number }} | ||
download-artifact-name: ${{ env.TEST_REPORTS_ARTIFACT_NAME }} | ||
download-artifact-run-id: ${{ github.event.workflow_run.id }} | ||
report-name: ${{ env.TEST_REPORT_NAME }} | ||
report-path: '**/target/**/TEST*.xml' |
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,79 @@ | ||
# --------------------------------------------------------------------------- | ||
# 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: Cleanup after merge | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
permissions: | ||
# `actions:write` permission is required to delete caches | ||
# See also: https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#delete-a-github-actions-cache-for-a-repository-using-a-cache-id | ||
actions: write | ||
|
||
jobs: | ||
delete: | ||
name: Cleanup | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Delete github caches belonging to branch {{ github.ref }} | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
gh extension install actions/gh-actions-cache | ||
repo="${{ github.repository }}" | ||
branch="${{ github.ref }}" | ||
printf "Fetching list of cache keys for branch %s..." "${branch}" | ||
cache_keys_for_pr=( $( \ | ||
gh actions-cache \ | ||
--repo "${repo}" \ | ||
--branch "${branch}" \ | ||
list \ | ||
| cut -f 1) \ | ||
) | ||
echo " Done." | ||
# Setting this to not fail the workflow while deleting cache keys. | ||
set +e | ||
if [[ -n "${cache_keys_for_pr[*]}" ]] | ||
then | ||
echo "Found the following cache keys:" | ||
for cache_key in "${cache_keys_for_pr[@]}" | ||
do | ||
echo " ${cache_key}" | ||
done | ||
echo "Starting deletion of caches" | ||
for cache_key in "${cache_keys_for_pr[@]}" | ||
do | ||
printf " Deleting cache with key %s..." "${cache_key}" | ||
gh actions-cache delete \ | ||
--repo "${repo}" \ | ||
--branch "${branch}" \ | ||
--confirm \ | ||
"${cache_key}" \ | ||
1> /dev/null | ||
echo " Done." | ||
done | ||
echo "All caches deleted." | ||
else | ||
echo "No caches on branch ${branch} found. Nothing to delete." | ||
fi |
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,50 @@ | ||
# --------------------------------------------------------------------------- | ||
# 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: Comment on PR | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '**.adoc' | ||
- '**.md' | ||
- 'KEYS' | ||
- 'LICENSE' | ||
- 'NOTICE' | ||
|
||
permissions: | ||
actions: write | ||
checks: write | ||
pull-requests: write | ||
|
||
jobs: | ||
pr-comment: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: (Re)create comment for PR ${{ github.event.number }} | ||
uses: turing85/publish-report@feature/run-id-and-pr-number | ||
with: | ||
github-token: ${{ github.token }} | ||
checkout: true | ||
comment-message-recreate: | | ||
## 🚦Reports 🚦 | ||
Reports will be posted here as they get available. | ||
comment-message-pr-number: ${{ github.event.number }} | ||
recreate-comment: true |
Oops, something went wrong.