From 61a54e7bdd9239109f2c1bb5c40eeef1c86169ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 8 Sep 2023 15:51:22 +0200 Subject: [PATCH] build(ci): run sonar cloud only if sonar token secret is defined MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5bfe298..ac2267e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,22 @@ on: merge_group: branches: [main] jobs: + check-secrets: + runs-on: ubuntu-latest + outputs: + sonar-token-exists: ${{ steps.sonar-token.outputs.defined }} + steps: + - name: Check for SonarCloud Token Availability + id: sonar-token + shell: bash + run: | + if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then + echo "defined=true" >> $GITHUB_OUTPUT; + else + echo "defined=false" >> $GITHUB_OUTPUT; + fi build-simulator: + needs: [check-secrets] strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] @@ -48,12 +63,13 @@ jobs: if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} run: pnpm coverage - name: SonarCloud Scan - if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} + if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} uses: sonarsource/sonarcloud-github-action@v2.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} build-dashboard: + needs: [check-secrets] strategy: matrix: os: [windows-latest, macos-latest, ubuntu-latest] @@ -97,7 +113,7 @@ jobs: if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} run: pnpm coverage - name: SonarCloud Scan - if: ${{ github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} + if: ${{ needs.check-secrets.outputs.sonar-token-exists == 'true' && github.repository == 'sap/e-mobility-charging-stations-simulator' && matrix.os == 'ubuntu-latest' && matrix.node == '18.x' }} uses: sonarsource/sonarcloud-github-action@v2.0.1 with: projectBaseDir: ui/web -- 2.34.1