File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ stages:
27
27
- job : Run
28
28
timeoutInMinutes : 120
29
29
pool :
30
- name : azsdk-pool-mms-ubuntu-2204-general
31
- vmImage : ubuntu-22 .04
30
+ name : azsdk-pool
31
+ demands : ImageOverride -equals ubuntu-24 .04
32
32
33
33
variables :
34
34
CodeownersLinterVersion : ' 1.0.0-dev.20240926.2'
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ parameters:
27
27
default : []
28
28
- name : Pool
29
29
type : string
30
- default : azsdk-pool-mms-ubuntu-2204-general
30
+ default : azsdk-pool
31
31
- name : OsVmImage
32
32
type : string
33
- default : ubuntu-22 .04
33
+ default : ubuntu-24 .04
34
34
# This parameter is only necessary if there are multiple invocations of this template within the SAME STAGE.
35
35
# When that occurs, provide a name other than the default value.
36
36
- name : GenerateJobName
Original file line number Diff line number Diff line change 1
1
jobs :
2
2
- job : CreateDocIndex
3
3
pool :
4
- name : azsdk-pool-mms-win-2022-general
4
+ name : azsdk-pool
5
+ demands : ImageOverride -equals windows-2022
5
6
steps :
6
7
- task : UsePythonVersion@0
7
8
displayName : ' Use Python 3.11'
@@ -36,14 +37,14 @@ jobs:
36
37
Copy-Item -Path $(Build.SourcesDirectory)/eng/* -Destination ./ -Recurse -Force
37
38
echo "##vso[task.setvariable variable=toolPath]$(Build.BinariesDirectory)"
38
39
workingDirectory: $(Build.BinariesDirectory)
39
- displayName: Move eng/common to Tool Directory
40
+ displayName: Move eng/common to Tool Directory
40
41
41
42
- task : PublishPipelineArtifact@0
42
43
condition : succeeded()
43
44
inputs :
44
45
artifactName : " Doc.Index"
45
46
targetPath : $(Build.ArtifactStagingDirectory)/docfx_project/_site
46
-
47
+
47
48
- pwsh : |
48
49
git checkout -b gh-pages-local --track origin/gh-pages-root -f
49
50
workingDirectory: $(Build.SourcesDirectory)
Original file line number Diff line number Diff line change @@ -25,18 +25,18 @@ stages:
25
25
strategy :
26
26
matrix :
27
27
Windows :
28
- Pool : azsdk-pool-mms-win-2022-general
28
+ Pool : azsdk-pool
29
29
Image : windows-2022
30
30
Linux :
31
- Pool : azsdk-pool-mms-ubuntu-2204-general
32
- Image : ubuntu-22 .04
31
+ Pool : azsdk-pool
32
+ Image : ubuntu-24 .04
33
33
Mac :
34
34
Pool : Azure Pipelines
35
35
Image : macos-latest
36
36
37
37
pool :
38
38
name : $(Pool)
39
- vmImage : $(Image)
39
+ demands : ImageOverride -equals $(Image)
40
40
41
41
steps :
42
42
- ${{ parameters.PreTestSteps }}
You can’t perform that action at this time.
0 commit comments