-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Run live tests on all operating systems #6668
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
Changes from 6 commits
0e097ff
2581c82
a38380d
7d064d5
244e412
4b8e3ab
589cbb7
c5ba2b8
14cb535
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,22 +1,44 @@ | ||
| parameters: | ||
| DisplayName: '' | ||
| ServiceDirectory: '' | ||
| EnvVars: {} | ||
| MaxParallel: 0 | ||
| Matrix: | ||
| Win2016: | ||
| Linux - Java 8: | ||
| OSName: 'Linux' | ||
| OSVmImage: 'ubuntu-16.04' | ||
| JavaVersion: '1.8' | ||
| macOS - Java 8: | ||
| OSName: 'macOS' | ||
| OSVmImage: 'macOS-10.13' | ||
| JavaVersion: '1.8' | ||
| Windows - Java 8: | ||
| OSName: 'Windows' | ||
| OSVmImage: 'windows-2019' | ||
| DisplayName: 'Run Live tests' | ||
| JavaVersion: '1.8' | ||
| Linux - Java 11: | ||
| OSName: 'Linux' | ||
| OSVmImage: 'ubuntu-16.04' | ||
| JavaVersion: '1.11' | ||
| macOS - Java 11: | ||
| OSName: 'macOS' | ||
| OSVmImage: 'macOS-10.13' | ||
| JavaVersion: '1.11' | ||
| Windows - Java 11: | ||
| OSName: 'Windows' | ||
| OSVmImage: 'windows-2019' | ||
| JavaVersion: '1.11' | ||
| PreRunSteps: [] | ||
| TestName: LiveTest | ||
| TimeoutInMinutes: 60 | ||
| TestStepMavenInputs: | ||
|
||
| options: '--batch-mode --fail-at-end -Dmaven.wagon.http.pool=false -Dsurefire.rerunFailingTestsCount=3 --settings eng/settings.xml' | ||
| mavenOptions: '-Xmx3072m -Dorg.slf4j.simpleLogger.defaultLogLevel=error -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn' | ||
| options: '-Dmaven.wagon.http.pool=false -Dsurefire.rerunFailingTestsCount=3 $(DefaultOptions)' | ||
| mavenOptions: '$(MemoryOptions) $(LoggingOptions)' | ||
| javaHomeOption: 'JDKVersion' | ||
| jdkVersionOption: '1.8' | ||
| jdkVersionOption: '$(JavaVersion)' | ||
| jdkArchitectureOption: 'x64' | ||
| publishJUnitResults: false | ||
| goals: 'test' | ||
| goals: 'test' | ||
| TestResultsFiles: '' | ||
|
|
||
| jobs: | ||
|
|
@@ -33,6 +55,11 @@ jobs: | |
| vmImage: $(OSVmImage) | ||
|
|
||
| steps: | ||
| - script: | | ||
| echo "##vso[task.setvariable variable=DisplayName]$(OSName) on Java $(JavaVersion)" | ||
| displayName: "Setup DisplayName" | ||
| condition: eq(variables['DisplayName'], '') | ||
|
|
||
| - ${{ parameters.PreRunSteps }} | ||
|
|
||
| - task: Maven@3 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.