chore: sync-up catalog (#682) #1458
Workflow file for this run
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: Build CI | |
on: | |
push: | |
tags: [ '[0-9]+.[0-9]+.[0-9]+' ] | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
types: [ opened, reopened, synchronize ] | |
paths: | |
- .github/workflows/** | |
- gradle/** | |
- kata/** | |
- build.gradle.kts | |
- settings.gradle.kts | |
- gradle.properties | |
workflow_dispatch: | |
inputs: | |
job_count: | |
description: Max concurrent jobs to execute | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
fork: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 1 | |
outputs: | |
job_count: ${{ steps.job.outputs.count }} | |
job_sid: ${{ steps.job.outputs.sid }} | |
steps: | |
- name: Assign job IDs | |
id: job | |
run: | | |
# set default as inputs resolve only at manual executions | |
JOB_COUNT=${{ github.event.inputs.job_count || 40 }} | |
echo "count=$JOB_COUNT" >> $GITHUB_OUTPUT | |
echo "sid=[`seq -s , 1 $JOB_COUNT`]" >> $GITHUB_OUTPUT | |
# ------------------------ | |
test: | |
needs: fork | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 8 | |
strategy: | |
matrix: | |
job_sid: ${{ fromJSON(needs.fork.outputs.job_sid) }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Setup Java | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4 | |
- name: Test project | |
run: | | |
./gradlew test jacocoTestReport -x processResources -x processTestResources \ | |
--parallel \ | |
--configuration-cache \ | |
--build-cache \ | |
--no-daemon \ | |
--scan \ | |
-DforkCount=${{ needs.fork.outputs.job_count }} \ | |
-DforkSid=${{ matrix.job_sid }} | |
- name: Pack fork artifacts | |
run: | | |
find . -path "*/main/*.class" -o -path "*/test/*.class" -o -path "*/jacocoTestReport.xml" > artifacts | |
tar czfT artifacts.tar.gz artifacts | |
- name: Upload fork artifacts | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
with: | |
name: fork-${{ matrix.job_sid }} | |
retention-days: 1 | |
path: artifacts.tar.gz | |
# ------------------------ | |
scan: | |
needs: test | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
permissions: | |
contents: write | |
pull-requests: write | |
env: | |
VERSION: 1.24.0 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
fetch-depth: 0 | |
- name: Download fork artifacts | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
- name: Unpack fork artifacts | |
run: for f in fork-*/artifacts.tar.gz; do tar xf $f && rm $f; done | |
- name: Setup Java | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # v4.4.0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808 # v4 | |
with: | |
add-job-summary-as-pr-comment: always | |
- name: Analyze code quality | |
run: | | |
./gradlew sonar -x compileJava -x compileTestJava \ | |
--parallel \ | |
--configuration-cache \ | |
--build-cache \ | |
--no-daemon \ | |
--scan \ | |
-Pversion=${{ format('{0}+{1}', env.VERSION, github.RUN_NUMBER) }} \ | |
-Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.token=${{ secrets.SONAR_TOKEN }} \ | |
-Dsonar.organization=${{ secrets.SONAR_KEY }} \ | |
-Dsonar.qualitygate.wait=true \ | |
-Dsonar.gradle.skipCompile=true |