File tree Expand file tree Collapse file tree 2 files changed +4
-57
lines changed
Expand file tree Collapse file tree 2 files changed +4
-57
lines changed Original file line number Diff line number Diff line change @@ -16,62 +16,6 @@ variables:
1616- template : ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/variables.yml
1717
1818jobs :
19- - job : AutomationTest20200901
20- displayName : Automation Test (Profile 2020-09-01)
21- timeoutInMinutes : 120
22- pool :
23- name : ${{ variables.ubuntu_pool }}
24- strategy :
25- matrix :
26- Python39 :
27- python.version : ' 3.9'
28- Python312 :
29- python.version : ' 3.12'
30- steps :
31- - template : .azure-pipelines/templates/automation_test.yml
32- parameters :
33- pythonVersion : ' $(python.version)'
34- profile : ' 2020-09-01-hybrid'
35- fullTest : true
36- jobName : ' FullTest'
37-
38- - job : AutomationTest20190301
39- displayName : Automation Test (Profile 2019-03-01)
40- timeoutInMinutes : 120
41- pool :
42- name : ${{ variables.ubuntu_pool }}
43- strategy :
44- matrix :
45- Python39 :
46- python.version : ' 3.9'
47- Python312 :
48- python.version : ' 3.12'
49- steps :
50- - template : .azure-pipelines/templates/automation_test.yml
51- parameters :
52- pythonVersion : ' $(python.version)'
53- profile : ' 2019-03-01-hybrid'
54- fullTest : true
55- jobName : ' FullTest'
56-
57- - job : AutomationTest20180301
58- displayName : Automation Test (Profile 2018-03-01)
59- timeoutInMinutes : 120
60- pool :
61- name : ${{ variables.ubuntu_pool }}
62- strategy :
63- matrix :
64- Python39 :
65- python.version : ' 3.9'
66- Python312 :
67- python.version : ' 3.12'
68- steps :
69- - template : .azure-pipelines/templates/automation_test.yml
70- parameters :
71- pythonVersion : ' $(python.version)'
72- profile : ' 2018-03-01-hybrid'
73- fullTest : true
74- jobName : ' FullTest'
7519
7620- job : AutomationFullTestPython39ProfileLatest
7721 displayName : Automation Full Test Python39 Profile Latest
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ pip install $ALL_MODULES
1212
1313set -ev
1414
15- output=$( az cloud list-profiles -otsv)
15+ output=$(
16+ # only the latest profile left after droping all the azure stack profiles.
17+ echo latest
18+ )
1619
1720azdev verify package $share_folder /build/
1821
You can’t perform that action at this time.
0 commit comments