Skip to content

Commit

Permalink
ci: add ci analysis for sonar cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
bmunguli committed Feb 21, 2024
1 parent 1e46b9d commit d68fc21
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,27 @@ jobs:
packages: write
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Build and Deploy with Maven
run: mvn clean -X install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: SonarCloud Code Analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify --batch-mode sonar:sonar
32 changes: 32 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,20 @@
<!-- test libs -->
<assertj.version>3.24.2</assertj.version>
<junit.version>5.9.3</junit.version>
<jacoco.version>0.8.11</jacoco.version>

<!-- sonar plugin -->
<sonar-maven-plugin.version>3.10.0.2594</sonar-maven-plugin.version>


<!-- build -->
<maven.compiler.version>3.8.1</maven.compiler.version>


<!-- Sonar related properties -->
<sonar.organization>eclipse-tractusx</sonar.organization>
<sonar.projectKey>eclipse-tractusx_sldt-digital-twin-registry</sonar.projectKey>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
</properties>

<modules>
Expand Down Expand Up @@ -405,6 +416,27 @@
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<repositories>
Expand Down

0 comments on commit d68fc21

Please sign in to comment.