-
Notifications
You must be signed in to change notification settings - Fork 384
Update Dependencies, Migrate to Node 22 #2317
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
Changes from 7 commits
587a60d
80d6e69
a68dae6
9854c49
3d0d245
236838a
f144cb3
fa47b80
0d99f2f
8761d6f
ba57f1d
a0692b4
68f4a38
30cbb9a
d8da0f1
1f1ee93
caaf139
bc93909
31b57ce
3ab2dba
2db5a43
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ parameters: | |
| os: windows | ||
| emoji: 🪟 | ||
| - name: NetCore1ESPool-Internal | ||
| image: 1es-ubuntu-2204 | ||
| image: ubuntu-latest | ||
| os: linux | ||
| emoji: 🐧 | ||
| - name: Azure Pipelines | ||
|
|
@@ -95,8 +95,8 @@ extends: | |
| parameters: | ||
| pool: | ||
| name: Azure Pipelines | ||
| image: macOS-latest | ||
| os: macOS | ||
| image: windows-latest | ||
| os: windows | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This, absolutely, should not be done. We should never use external Windows images. We use external macOS images because we don't have internal macOS agents.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is further logic that was already utilizing this, I don't recall how/why that is the case. I looked at the 1es migration PR and some of it may have been a migration tooling issue/pre-existing issue, and some of it may be due to the fact that |
||
| useOneEngineeringPool: true | ||
| - template: pipeline-templates/package-vsix.yaml@self | ||
| parameters: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are the only images available to that agent pool:

ubuntu-latestisn't a valid image name.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like
namedid not get propagated to the pool object which caused the default pool provider of azure pipelines to be used, so this was a valid image name, but it should not have been using that pool provider. I think this has been fixed now.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found the doc link to the images. I wish that it was better explained which section is for which pool, since there is no section for the netcore public pool, only the external test pooling in general 🤔