Skip to content

Commit cc95910

Browse files
authored
Remove windows 2019 (#44)
1 parent 49c009d commit cc95910

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
### Changed
9+
10+
- `azure-pipelines.yml`
11+
- Remove `windows-2019` images fixes [#43](https://github.com/dsccommunity/DscResource.Base/issues/43)
12+
- Move individual tasks to `windows-latest`.
13+
814
## [1.4.0] - 2025-05-24
915

1016
### Removed

azure-pipelines.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ stages:
5959
- job: Test_HQRM
6060
displayName: 'HQRM'
6161
pool:
62-
vmImage: 'windows-2022'
63-
timeoutInMinutes: 0
62+
vmImage: 'windows-latest'
63+
timeoutInMinutes: '0'
6464
steps:
6565
- task: DownloadPipelineArtifact@2
6666
displayName: 'Download Build Artifact'
@@ -103,8 +103,8 @@ stages:
103103
- job: Test_Unit
104104
displayName: 'Unit'
105105
pool:
106-
vmImage: 'windows-2019'
107-
timeoutInMinutes: 0
106+
vmImage: 'windows-latest'
107+
timeoutInMinutes: '0'
108108
steps:
109109
- task: DownloadPipelineArtifact@2
110110
displayName: 'Download Build Artifact'
@@ -132,27 +132,26 @@ stages:
132132
inputs:
133133
targetPath: '$(buildFolderName)/$(testResultFolderName)/'
134134
artifactName: $(testArtifactName)
135-
parallel: true
136135

137136
- job: Test_Integration
138137
displayName: 'Integration'
139138
strategy:
140139
matrix:
141-
POWERSHELL_WIN2019:
142-
JOB_VMIMAGE: 'windows-2019'
143-
JOB_PWSH: true
144140
POWERSHELL_WIN2022:
145141
JOB_VMIMAGE: 'windows-2022'
146142
JOB_PWSH: true
147-
WINDOWSPOWERSHELL_WIN2019: # cSpell: disable-line
148-
JOB_VMIMAGE: 'windows-2019'
149-
JOB_PWSH: false
150143
WINDOWSPOWERSHELL_WIN2022: # cSpell: disable-line
151144
JOB_VMIMAGE: 'windows-2022'
152145
JOB_PWSH: false
146+
POWERSHELL_WIN2025:
147+
JOB_VMIMAGE: 'windows-2025'
148+
JOB_PWSH: true
149+
WINDOWSPOWERSHELL_WIN2025: # cSpell: disable-line
150+
JOB_VMIMAGE: 'windows-2025'
151+
JOB_PWSH: false
153152
pool:
154153
vmImage: $(JOB_VMIMAGE)
155-
timeoutInMinutes: 0
154+
timeoutInMinutes: '0'
156155
variables:
157156
# This sets environment variable $env:CI.
158157
CI: true
@@ -184,7 +183,7 @@ stages:
184183
condition: succeededOrFailed()
185184
pool:
186185
vmImage: 'ubuntu-latest'
187-
timeoutInMinutes: 0
186+
timeoutInMinutes: '0'
188187
steps:
189188
- task: DownloadPipelineArtifact@2
190189
displayName: 'Download Build Artifact'

0 commit comments

Comments
 (0)