-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build.yml: instructions from Sonarqube GUI
- Loading branch information
1 parent
a3a1943
commit 40bef37
Showing
1 changed file
with
33 additions
and
36 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 |
---|---|---|
@@ -1,44 +1,41 @@ | ||
name: Build | ||
on: | ||
# push: | ||
# branches: | ||
# - main # the name of your main branch | ||
# pull_request: | ||
# types: [opened, synchronize, reopened] | ||
|
||
on: | ||
|
||
push: | ||
|
||
branches: | ||
|
||
- main | ||
|
||
pull_request: | ||
|
||
types: [opened, synchronize, reopened] | ||
|
||
|
||
|
||
jobs: | ||
|
||
build: | ||
|
||
name: Build | ||
runs-on: windows-latest | ||
|
||
runs-on: ubuntu-latest | ||
|
||
permissions: read-all | ||
|
||
steps: | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.17 | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
with: | ||
|
||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: Cache SonarQube packages | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~\sonar\cache | ||
key: ${{ runner.os }}-sonar | ||
restore-keys: ${{ runner.os }}-sonar | ||
- name: Cache SonarQube scanner | ||
id: cache-sonar-scanner | ||
uses: actions/cache@v1 | ||
with: | ||
path: .\.sonar\scanner | ||
key: ${{ runner.os }}-sonar-scanner | ||
restore-keys: ${{ runner.os }}-sonar-scanner | ||
- name: Install SonarQube scanner | ||
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true' | ||
shell: powershell | ||
run: | | ||
New-Item -Path .\.sonar\scanner -ItemType Directory | ||
dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner | ||
- name: Build and analyze | ||
shell: powershell | ||
run: | | ||
.\.sonar\scanner\dotnet-sonarscanner begin /k:"example" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}" | ||
dotnet build | ||
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" | ||
|
||
- uses: sonarsource/sonarqube-scan-action@master | ||
|
||
env: | ||
|
||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
|
||
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} |