From e15829a28194bf81d72a0c998b85d2db735a027b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20M=C3=BCehlencord?= Date: Wed, 1 Apr 2026 14:22:39 +0200 Subject: [PATCH] removed debug output --- .gitea/workflows/ci.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index b24292a..9eb5ab5 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -55,14 +55,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: debug SONAR_TOKEN - run: | - if [ -z "${{ secrets.SONAR_TOKEN }}" ]; then - echo "SONAR_TOKEN is empty" - else - echo "SONAR_TOKEN is set" - fi - - name: Prepare SSH run: | install -m 600 -D /dev/null ~/.ssh/id_rsa @@ -89,7 +81,7 @@ jobs: - name: Build with Maven working-directory: source - run: mvn -B clean verify sonar:sonar org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom -Dsonar.host.url="${{ inputs.sonar_host }}" -Dsonar.token="${{ secrets.SONAR_TOKEN }}" + run: mvn -B jacoco:prepare-agent verify sonar:sonar org.cyclonedx:cyclonedx-maven-plugin:makeAggregateBom -Dsonar.host.url="${{ inputs.sonar_host }}" -Dsonar.token="${{ secrets.SONAR_TOKEN }}" - name: Upload SBOM to DTrack uses: DependencyTrack/gh-upload-sbom@v3