mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-23 07:45:49 +00:00
Changed: Disabled tests for run time
This commit is contained in:
parent
0925d196e8
commit
dc893d663d
1 changed files with 5 additions and 7 deletions
|
@ -24,9 +24,9 @@ jobs:
|
||||||
javaHomeOption: 'JDKVersion'
|
javaHomeOption: 'JDKVersion'
|
||||||
jdkVersionOption: '1.11'
|
jdkVersionOption: '1.11'
|
||||||
jdkArchitectureOption: 'x64'
|
jdkArchitectureOption: 'x64'
|
||||||
publishJUnitResults: true
|
#publishJUnitResults: true
|
||||||
testRunTitle: '$(Build.BuildNumber)'
|
#testRunTitle: '$(Build.BuildNumber)'
|
||||||
testResultsFiles: '**/TEST-*.xml'
|
#testResultsFiles: '**/TEST-*.xml'
|
||||||
goals: 'package'
|
goals: 'package'
|
||||||
|
|
||||||
#- task: CopyFiles@2
|
#- task: CopyFiles@2
|
||||||
|
@ -41,18 +41,16 @@ jobs:
|
||||||
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/publish-build-artifacts?view=azure-devops
|
# https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/utility/publish-build-artifacts?view=azure-devops
|
||||||
#- task: PublishBuildArtifacts@1
|
#- task: PublishBuildArtifacts@1
|
||||||
# inputs:
|
# inputs:
|
||||||
# pathToPublish: '$(Build.ArtifactStagingDirectory)/target'
|
# pathToPublish: '$(Build.DefaultWorkingDirectory)/target'
|
||||||
# artifactName: 'jar-artifact'
|
# artifactName: 'jar-artifact'
|
||||||
# publishLocation: 'Container' # Publishes inside Azure Pipelines artifact folder.
|
# publishLocation: 'Container' # Publishes inside Azure Pipelines artifact folder.
|
||||||
# parallel: true # Increased speed through multi-threaded copying.
|
# parallel: true # Increased speed through multi-threaded copying.
|
||||||
# parallelCount: 8 # Dependent upon CPU capabilities.
|
# parallelCount: 8 # Dependent upon CPU capabilities.
|
||||||
|
|
||||||
- job: DeployWebApp
|
|
||||||
steps:
|
|
||||||
- task: AzureWebApp@1
|
- task: AzureWebApp@1
|
||||||
inputs:
|
inputs:
|
||||||
azureSubscription: 'azure-svc-connection'
|
azureSubscription: 'azure-svc-connection'
|
||||||
appType: webAppLinux
|
appType: webAppLinux
|
||||||
appName: 'james-pet-clinic'
|
appName: 'james-pet-clinic'
|
||||||
package: '$(System.DefaultWorkingDirectory)/target/*.jar'
|
package: '$(System.DefaultWorkingDirectory)/**/*.jar'
|
||||||
|
|
Loading…
Reference in a new issue