Skip to content

Sync eng/common directory with azure-sdk-tools for PR 10953 #1931

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/common/pipelines/codeowners-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ stages:
- job: Run
timeoutInMinutes: 120
pool:
name: azsdk-pool-mms-ubuntu-2204-general
vmImage: ubuntu-22.04
name: azsdk-pool
demands: ImageOverride -equals ubuntu-24.04

variables:
CodeownersLinterVersion: '1.0.0-dev.20240926.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ parameters:
default: []
- name: Pool
type: string
default: azsdk-pool-mms-ubuntu-2204-general
default: azsdk-pool
- name: OsVmImage
type: string
default: ubuntu-22.04
default: ubuntu-24.04
# This parameter is only necessary if there are multiple invocations of this template within the SAME STAGE.
# When that occurs, provide a name other than the default value.
- name: GenerateJobName
Expand Down
7 changes: 4 additions & 3 deletions eng/common/pipelines/templates/jobs/docindex.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
jobs:
- job: CreateDocIndex
pool:
name: azsdk-pool-mms-win-2022-general
name: azsdk-pool
demands: ImageOverride -equals windows-2022
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.11'
Expand Down Expand Up @@ -36,14 +37,14 @@ jobs:
Copy-Item -Path $(Build.SourcesDirectory)/eng/* -Destination ./ -Recurse -Force
echo "##vso[task.setvariable variable=toolPath]$(Build.BinariesDirectory)"
workingDirectory: $(Build.BinariesDirectory)
displayName: Move eng/common to Tool Directory
displayName: Move eng/common to Tool Directory

- task: PublishPipelineArtifact@0
condition: succeeded()
inputs:
artifactName: "Doc.Index"
targetPath: $(Build.ArtifactStagingDirectory)/docfx_project/_site

- pwsh: |
git checkout -b gh-pages-local --track origin/gh-pages-root -f
workingDirectory: $(Build.SourcesDirectory)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ stages:
strategy:
matrix:
Windows:
Pool: azsdk-pool-mms-win-2022-general
Pool: azsdk-pool
Image: windows-2022
Linux:
Pool: azsdk-pool-mms-ubuntu-2204-general
Image: ubuntu-22.04
Pool: azsdk-pool
Image: ubuntu-24.04
Mac:
Pool: Azure Pipelines
Image: macos-latest

pool:
name: $(Pool)
vmImage: $(Image)
demands: ImageOverride -equals $(Image)

steps:
- ${{ parameters.PreTestSteps }}
Expand Down