Skip to content
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/pipelines/templates/jobs/vmr-synchronization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
name: $(DncEngPublicBuildPool)
image: 1es-ubuntu-2004-open
image: 1es-ubuntu-2204-open
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI I don't think 1es-ubuntu-2204-open works in public just yet, it's tracked by https://dev.azure.com/dnceng/internal/_workitems/edit/9365/

probably doesn't matter since we likely don't run vmr sync in public anymore

os: linux
${{ else }}:
name: $(DncEngInternalBuildPool)
demands: ImageOverride -equals 1es-ubuntu-2004
demands: ImageOverride -equals 1es-ubuntu-2204
os: linux

steps:
Expand Down
2 changes: 1 addition & 1 deletion eng/vmr-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ set -e
highlight 'Installing .NET, preparing the tooling..'
source "$scriptroot/common/tools.sh"
InitializeDotNetCli true
dotnetDir=$( cd $scriptroot/../.dotnet/; pwd -P )
dotnetDir=$_InitializeDotNetCli
dotnet=$dotnetDir/dotnet
"$dotnet" tool restore

Expand Down
Loading