File tree Expand file tree Collapse file tree 2 files changed +11
-14
lines changed Expand file tree Collapse file tree 2 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 1
1
jobs :
2
- - job : ' Ubuntu_1804'
3
- pool :
4
- vmImage : ' Ubuntu-18.04'
5
2
3
+ - job : ' Ubuntu_2204'
4
+ pool :
5
+ vmImage : ' ubuntu-22.04'
6
6
steps :
7
7
- template : azure-pipelines-steps.yml
8
8
9
- - job : ' VS2017_Win2016 '
9
+ - job : ' MacOS_12 '
10
10
pool :
11
- vmImage : ' vs2017-win2016'
11
+ vmImage : ' macOS-12'
12
+ steps :
13
+ - template : azure-pipelines-steps.yml
12
14
15
+ - job : ' Windows_2022'
16
+ pool :
17
+ vmImage : ' windows-2022'
13
18
steps :
14
19
- template : azure-pipelines-steps.yml
15
20
33
38
artifactName : npm
34
39
displayName : ' Publish npm artifact'
35
40
condition : and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
36
-
37
- - job : ' MacOS_1014'
38
- pool :
39
- vmImage : ' macOS-10.14'
40
-
41
- steps :
42
- - template : azure-pipelines-steps.yml
Original file line number Diff line number Diff line change @@ -54,8 +54,7 @@ describe('Tool Tests', function () {
54
54
55
55
return new Promise < void > ( async ( resolve , reject ) => {
56
56
try {
57
-
58
- let downPath : string = await toolLib . downloadTool ( "https://httpbingo.org/redirect-to?url=" + encodeURI ( 'https://httpbin.org/bytes/100' ) + "&status_code=302" ) ;
57
+ let downPath : string = await toolLib . downloadTool ( "https://httpbingo.org/redirect-to?url=" + encodeURI ( 'https://httpbingo.org/bytes/100' ) + "&status_code=302" ) ;
59
58
toolLib . debug ( 'downloaded path: ' + downPath ) ;
60
59
61
60
assert ( tl . exist ( downPath ) , 'downloaded file exists' ) ;
You can’t perform that action at this time.
0 commit comments