ci: again..
Some checks failed
Test if Server can be built / build-server (push) Successful in 26s
Test if Server can be built / sonarqube (push) Failing after 52s

This commit is contained in:
Timothy Schenk 2023-11-01 19:04:10 +01:00
parent 319a0e1295
commit 18c5b43a49

View file

@ -36,9 +36,10 @@ jobs:
dotnet tool install --global dotnet-sonarscanner
dotnet tool install --global dotnet-coverage
export PATH="$PATH:$HOME/.dotnet/tools"
export PATH="$PATH:/root/.dotnet/tools"
- name: Sonarqube Begin
run: |
dotnet-sonarscanner begin /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}"
dotnet sonarscanner begin /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="${{ secrets.SONAR_HOST_URL }}"
- name: Sonarqube Scan
run: |
dotnet build Server -c Release
@ -46,4 +47,4 @@ jobs:
# dotnet-coverage collect 'dotnet test' -f xml -o 'coverage.xml'
- name: Sonarqube End
run: |
dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"