-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Add new pipeline for spring compatibility test #28749
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 all commits
7be6e44
d040a2a
4f43f54
0a38398
9e7c04e
2351022
f1677d9
b57b04a
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 |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| trigger: none | ||
| pr: none | ||
|
|
||
| variables: | ||
| - template: ../../eng/pipelines/templates/variables/globals.yml | ||
|
|
||
| stages: | ||
| - stage: | ||
| jobs: | ||
| - job: | ||
|
|
||
| pool: | ||
| vmImage: "ubuntu-latest" | ||
|
|
||
Netyyyy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| steps: | ||
| - script: | | ||
| pip install termcolor | ||
| displayName: 'python module install' | ||
| - script: | | ||
| python ./sdk/spring/scripts/compatibility_add_dependencymanagement.py -b 2.6.6 -c 2021.0.1 | ||
|
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. This file does not exist, now it's just a place holder? 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.
Member
Author
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. Yes, it was just a template to create pipeline action, and it will work on this PR:#28728 to improve |
||
| displayName: 'add dependency management' | ||
| - script: | | ||
| python ./sdk/spring/scripts/compatibility_deleted_version.py | ||
| displayName: 'delete version control' | ||
Netyyyy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - task: Maven@3 | ||
| displayName: 'Run tests' | ||
| inputs: | ||
| mavenPomFile: sdk/spring/pom.xml | ||
| mavenOptions: '$(MemoryOptions)' | ||
| javaHomeOption: 'JDKVersion' | ||
| jdkVersionOption: $(JavaTestVersion) | ||
| jdkArchitectureOption: 'x64' | ||
| goals: 'clean test -Pdev' | ||
Uh oh!
There was an error while loading. Please reload this page.