-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added sonar #4
Added sonar #4
Changes from all commits
ffebf7f
a5e65fe
1b6e7ad
94d6c30
93b4d65
5d01ff8
f041d2f
7c2af25
096a55f
d5263de
9379973
19b25f5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,48 +1,57 @@ | ||||||||||||||||||||||||||||||||||||
name: SonarCloud | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
on: | ||||||||||||||||||||||||||||||||||||
push: | ||||||||||||||||||||||||||||||||||||
branches: | ||||||||||||||||||||||||||||||||||||
- main | ||||||||||||||||||||||||||||||||||||
pull_request: | ||||||||||||||||||||||||||||||||||||
types: [opened, synchronize, reopened] | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
jobs: | ||||||||||||||||||||||||||||||||||||
build: | ||||||||||||||||||||||||||||||||||||
name: Build and analyze | ||||||||||||||||||||||||||||||||||||
runs-on: windows-latest | ||||||||||||||||||||||||||||||||||||
steps: | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
- name: Set up JDK 17 | ||||||||||||||||||||||||||||||||||||
uses: actions/setup-java@v3 | ||||||||||||||||||||||||||||||||||||
with: | ||||||||||||||||||||||||||||||||||||
java-version: 17 | ||||||||||||||||||||||||||||||||||||
distribution: 'zulu' # Alternative distribution options are available. | ||||||||||||||||||||||||||||||||||||
distribution: 'zulu' | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
- uses: actions/checkout@v3 | ||||||||||||||||||||||||||||||||||||
with: | ||||||||||||||||||||||||||||||||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
- name: Cache SonarCloud packages | ||||||||||||||||||||||||||||||||||||
uses: actions/cache@v3 | ||||||||||||||||||||||||||||||||||||
with: | ||||||||||||||||||||||||||||||||||||
path: ~\sonar\cache | ||||||||||||||||||||||||||||||||||||
key: ${{ runner.os }}-sonar | ||||||||||||||||||||||||||||||||||||
restore-keys: ${{ runner.os }}-sonar | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
- name: Cache SonarCloud scanner | ||||||||||||||||||||||||||||||||||||
id: cache-sonar-scanner | ||||||||||||||||||||||||||||||||||||
uses: actions/cache@v3 | ||||||||||||||||||||||||||||||||||||
with: | ||||||||||||||||||||||||||||||||||||
path: .\.sonar\scanner | ||||||||||||||||||||||||||||||||||||
key: ${{ runner.os }}-sonar-scanner | ||||||||||||||||||||||||||||||||||||
restore-keys: ${{ runner.os }}-sonar-scanner | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Comment on lines
+32
to
+40
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the previous comment, ensure the caching path for the SonarCloud scanner is cross-platform compatible. - path: .\.sonar\scanner
+ path: ${{ runner.temp }}/.sonar/scanner Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||
- name: Install SonarCloud 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 | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
Comment on lines
+40
to
+47
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The installation script for the SonarCloud scanner is PowerShell-specific. Consider adding a note or condition to ensure clarity on platform compatibility. |
||||||||||||||||||||||||||||||||||||
- name: Build and analyze | ||||||||||||||||||||||||||||||||||||
env: | ||||||||||||||||||||||||||||||||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | ||||||||||||||||||||||||||||||||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||||||||||||||||||||||||||||||||||||
shell: powershell | ||||||||||||||||||||||||||||||||||||
run: | | ||||||||||||||||||||||||||||||||||||
.\.sonar\scanner\dotnet-sonarscanner begin /k:"adimiko_transactioncontext" /o:"adimiko" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" | ||||||||||||||||||||||||||||||||||||
dotnet build | ||||||||||||||||||||||||||||||||||||
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" | ||||||||||||||||||||||||||||||||||||
dotnet restore | ||||||||||||||||||||||||||||||||||||
dotnet build -c Release --no-incremental --no-restore | ||||||||||||||||||||||||||||||||||||
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The caching path for SonarCloud packages uses a Windows-specific path. Ensure cross-platform compatibility by using a platform-independent path or adding conditions for different operating systems.
Committable suggestion