From 5d2c8f600187719eb54fe5d4270c8d70c3378f1e Mon Sep 17 00:00:00 2001 From: brianLoomis Date: Fri, 2 Feb 2024 16:30:53 -0500 Subject: [PATCH] updating SQ --- .github/workflows/sonarqube.yml | 22 ++++++++++++---------- sonar-project.properties | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index f3bd837..3aedb67 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -1,7 +1,6 @@ name: SonarQube scan - +# place this file in /.github/workflows on: - # Trigger analysis when pushing to your main branches, and when creating a pull request. push: branches: - main @@ -12,18 +11,21 @@ on: jobs: sonarqube: - runs-on: ip-range-controlled -# runs-on: ubuntu-latest for GH runner -# needs: [build] + runs-on: ubuntu-latest-4-cores steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: - # Disabling shallow clone is recommended for improving relevancy of reporting fetch-depth: 0 + + - name: Generate coverage.out and covreport.xml file + run: go test -v -coverprofile="coverage.out" ./... + - name: Copy file + run: cp coverage.out test/unittest/coverage.out + - name: cat the file + run: cat test/unittest/coverage.out + - name: SonarQube Scan uses: sonarsource/sonarqube-scan-action@master env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - - \ No newline at end of file + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} \ No newline at end of file diff --git a/sonar-project.properties b/sonar-project.properties index 6ab6781..711d146 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,5 +1,5 @@ # must be unique in a given SonarQube instance -sonar.projectKey=habitat-sh_arch-sample-job_AYZMKAdluSRY2YBi6dj1 +sonar.projectKey=chef_arch-sample-cli_AYYEmWi1uSRY2YBi6bnQ # --- optional properties ---