Skip to content
Merged
Changes from all commits
Commits
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
33 changes: 33 additions & 0 deletions sdk/spring/compatibility-test.yml
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"

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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file does not exist, now it's just a place holder?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dependencymanagement -> dependency_management

Copy link
Member Author

@Netyyyy Netyyyy May 12, 2022

Choose a reason for hiding this comment

The 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'
- task: Maven@3
displayName: 'Run tests'
inputs:
mavenPomFile: sdk/spring/pom.xml
mavenOptions: '$(MemoryOptions)'
javaHomeOption: 'JDKVersion'
jdkVersionOption: $(JavaTestVersion)
jdkArchitectureOption: 'x64'
goals: 'clean test -Pdev'