Skip to content

Commit

Permalink
Chaning VM Image to Latest
Browse files Browse the repository at this point in the history
  • Loading branch information
StartAutomating committed Nov 24, 2019
1 parent 5a4a704 commit ad6206c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Ado/Jobs/TestPowerShellOnLinux.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
job= 'Linux'
displayName = 'Linux'
pool = @{vmImage='ubuntu-16.04'}
pool = @{vmImage='ubuntu-latest'}
steps = 'InstallPowerShellCoreOnLinux','InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage'
}
2 changes: 1 addition & 1 deletion Ado/Jobs/TestPowerShellOnMac.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
job = 'MacOS'
displayName = 'MacOS'
pool = @{vmImage='xcode9-macos10.13'}
pool = @{vmImage='macos-latest'}
steps = 'InstallPowerShellCoreOnMacOS','InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage'
}
2 changes: 1 addition & 1 deletion Ado/Jobs/TestPowerShellOnWindows.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
job = 'Windows'
displayName = 'Windows'
pool = @{vmImage='vs2017-win2016'}
pool = @{vmImage='windows-latest'}
steps = 'InstallPester', 'RunPester','PublishTestResults','PublishCodeCoverage'
}
2 changes: 1 addition & 1 deletion Ado/Stages/PowerShellStaticAnalysis.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
job = 'PSScriptAnalyzer'
displayName = 'PSScriptAnalyzer'
pool=@{
vmImage= 'vs2017-win2016'
vmImage= 'windows-latest'
}
steps = @('InstallPSDevOps', 'InstallPSScriptAnalyzer','RunPSScriptAnalyzer')
})
Expand Down

0 comments on commit ad6206c

Please sign in to comment.