Skip to content
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

Test sonar #7

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
492b8e4
[PPD-206] crud gps: added enrollments api (no business code)
Jun 20, 2022
de8b9d6
[PPD-206] crud gps: added services api (no business code)
Jun 20, 2022
685f01a
Merge branch 'PPD-206-CRUD-GPS' of
Jun 20, 2022
45f8e3a
[PPD-206] crud gps: updated openapi
Jun 20, 2022
7c9700d
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 20, 2022
f2338ef
[PPD-206] crud gps: first DRAFT api impl
Jun 20, 2022
63fa75f
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 21, 2022
c0e6e85
[PPD-206] crud gps: added create business code
Jun 21, 2022
14d4561
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 22, 2022
68959e4
[PPD-206] crud gps: all enrollments crud impl
Jun 22, 2022
29e6cf4
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 22, 2022
59aba33
[PPD-206] crud GPS: added EnrollmentsController Junit test
Jun 22, 2022
0889c20
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 23, 2022
00c0bd3
[PPD-206] crud gps: added EnrollmentsService JUNIT test based on
Jun 23, 2022
5220cbd
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 24, 2022
6825864
[PPD-206] crud gps: removed unnecessary test
Jun 24, 2022
e05c2f9
[PPD-206] crud gps: corrected error "unable to find valid certification
Jun 24, 2022
d28786e
Merge branch 'PPD-206-CRUD-GPS' of https://github.com/pagopa/pagopa-s…
Jun 24, 2022
27d54fb
upd vmimage
pasqualespica Jun 24, 2022
16f7879
disable junit result
pasqualespica Jun 24, 2022
3574103
jdk vers
pasqualespica Jun 24, 2022
c94ef3e
Update code-review-pipelines.yml for Azure Pipelines
pasqualespica Jun 24, 2022
e6a6987
Update code-review-pipelines.yml for Azure Pipelines
pasqualespica Jun 24, 2022
1092121
Update code-review-pipelines.yml for Azure Pipelines
pasqualespica Jun 24, 2022
c2fd00e
Update code-review-pipelines.yml for Azure Pipelines
pasqualespica Jun 27, 2022
f9c6874
Update code-review-pipelines.yml for Azure Pipelines
jacopocarlini Jun 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .devops/code-review-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
trigger: none

pool:
vmImage: 'ubuntu-20.04'
vmImage: 'ubuntu-18.04'

variables:
MAVEN_CACHE_FOLDER: $(Pipeline.Workspace)/.m2/repository
Expand Down Expand Up @@ -37,14 +37,19 @@ steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m $(MAVEN_OPTS)'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.11'
jdkArchitectureOption: 'x64'
goals: 'clean verify'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
codeCoverageToolOption: 'JaCoCo'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.11'
mavenVersionOption: 'Default'
mavenOptions: '-Xmx3072m $(MAVEN_OPTS)'
mavenAuthenticateFeed: false
effectivePomSkip: false
sonarQubeRunAnalysis: true
isJacocoCoverageReportXML: true
sqMavenPluginVersionChoice: 'latest'

- task: SonarCloudPublish@1
displayName: 'Publish SonarCloud results on build summary'
Expand Down
Loading