Skip to content

Commit 91cf608

Browse files
ci: [sync] Update from che-incubator/che-code @ 31149
Signed-off-by: devspacesbuild <[email protected]>
1 parent 9a755c0 commit 91cf608

File tree

979 files changed

+184159
-12823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

979 files changed

+184159
-12823
lines changed

devspaces-code/build/dockerfiles/brew.Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ RUN cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/ && npm
182182
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/typescript-language-features && npm install \
183183
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-api-tests && npm install \
184184
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-colorize-tests && npm install \
185+
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-colorize-perf-tests && npm install \
185186
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-test-resolver && npm install \
186187
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/remote && npm install \
187188
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/remote/web && npm install \
@@ -389,6 +390,7 @@ RUN cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/ && npm
389390
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/typescript-language-features && npm install \
390391
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-api-tests && npm install \
391392
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-colorize-tests && npm install \
393+
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-colorize-perf-tests && npm install \
392394
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/extensions/vscode-test-resolver && npm install \
393395
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/remote && npm install \
394396
&& cd $REMOTE_SOURCES_DIR/devspaces-images-code/app/devspaces-code/code/remote/web && npm install \

devspaces-code/code/.vscode-test.js

+10
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,16 @@ const extensions = [
4242
workspaceFolder: `extensions/vscode-colorize-tests/test`,
4343
mocha: { timeout: 60_000 }
4444
},
45+
{
46+
label: 'terminal-suggest',
47+
workspaceFolder: path.join(os.tmpdir(), `terminal-suggest-${Math.floor(Math.random() * 100000)}`),
48+
mocha: { timeout: 60_000 }
49+
},
50+
{
51+
label: 'vscode-colorize-perf-tests',
52+
workspaceFolder: `extensions/vscode-colorize-perf-tests/test`,
53+
mocha: { timeout: 6000_000 }
54+
},
4555
{
4656
label: 'configuration-editing',
4757
workspaceFolder: path.join(os.tmpdir(), `confeditout-${Math.floor(Math.random() * 100000)}`),

devspaces-code/code/.vscode/extensions/vscode-selfhost-test-provider/src/coverageProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class ScriptCoverageTracker {
142142
}
143143
}
144144

145-
export class V8CoverageFile extends vscode.FileCoverage2 {
145+
export class V8CoverageFile extends vscode.FileCoverage {
146146
public details: vscode.StatementCoverage[] = [];
147147

148148
constructor(

devspaces-code/code/.vscode/extensions/vscode-selfhost-test-provider/tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"src/**/*",
1212
"../../../src/vscode-dts/vscode.d.ts",
1313
"../../../src/vscode-dts/vscode.proposed.testObserver.d.ts",
14-
"../../../src/vscode-dts/vscode.proposed.testRelatedCode.d.ts",
15-
"../../../src/vscode-dts/vscode.proposed.attributableCoverage.d.ts"
14+
"../../../src/vscode-dts/vscode.proposed.testRelatedCode.d.ts"
1615
]
1716
}

devspaces-code/code/.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,24 @@
202202
"order": 5
203203
}
204204
},
205+
{
206+
"type": "extensionHost",
207+
"request": "launch",
208+
"name": "VS Code Tokenizer Performance Tests",
209+
"runtimeExecutable": "${execPath}",
210+
"args": [
211+
"${workspaceFolder}/extensions/vscode-colorize-perf-tests/test",
212+
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-colorize-perf-tests",
213+
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-colorize-perf-tests/out"
214+
],
215+
"outFiles": [
216+
"${workspaceFolder}/out/**/*.js"
217+
],
218+
"presentation": {
219+
"group": "5_tests",
220+
"order": 6
221+
}
222+
},
205223
{
206224
"type": "chrome",
207225
"request": "attach",

devspaces-code/code/.vscode/notebooks/api.github-issues

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"kind": 2,
99
"language": "github-issues",
10-
"value": "$REPO=repo:microsoft/vscode\n$MILESTONE=milestone:\"October 2024\""
10+
"value": "$REPO=repo:microsoft/vscode\n$MILESTONE=milestone:\"November 2024\""
1111
},
1212
{
1313
"kind": 1,

devspaces-code/code/.vscode/notebooks/endgame.github-issues

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"kind": 2,
99
"language": "github-issues",
10-
"value": "$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n$MILESTONE=milestone:\"October 2024\""
10+
"value": "$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n$MILESTONE=milestone:\"November 2024\""
1111
},
1212
{
1313
"kind": 1,

devspaces-code/code/.vscode/notebooks/my-endgame.github-issues

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"kind": 2,
99
"language": "github-issues",
10-
"value": "$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n$MILESTONE=milestone:\"October 2024\"\n\n$MINE=assignee:@me"
10+
"value": "$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n$MILESTONE=milestone:\"November 2024\"\n\n$MINE=assignee:@me"
1111
},
1212
{
1313
"kind": 1,
@@ -157,7 +157,7 @@
157157
{
158158
"kind": 2,
159159
"language": "github-issues",
160-
"value": "$REPOS $MILESTONE -$MINE is:issue is:closed reason:completed sort:updated-asc label:bug -label:unreleased -label:verified -label:z-author-verified -label:on-testplan -label:*duplicate -label:duplicate -label:invalid -label:*as-designed -label:*out-of-scope -label:error-telemetry -label:verification-steps-needed -label:verification-found -author:aeschli -author:alexdima -author:alexr00 -author:AmandaSilver -author:andreamah -author:bamurtaugh -author:bpasero -author:chrisdias -author:chrmarti -author:Chuxel -author:claudiaregio -author:connor4312 -author:dbaeumer -author:deepak1556 -author:devinvalenciano -author:digitarald -author:DonJayamanne -author:egamma -author:fiveisprime -author:gregvanl -author:hediet -author:isidorn -author:joaomoreno -author:joyceerhl -author:jrieken -author:kieferrm -author:lramos15 -author:lszomoru -author:meganrogge -author:misolori -author:mjbvz -author:rebornix -author:roblourens -author:rzhao271 -author:sandy081 -author:sbatten -author:stevencl -author:tanhakabir -author:TylerLeonhardt -author:Tyriar -author:weinand -author:amunger -author:karthiknadig -author:eleanorjboyd -author:Yoyokrazy -author:paulacamargo25 -author:ulugbekna -author:aiday-mar -author:daviddossett -author:bhavyaus -author:justschen -author:benibenj -author:luabud -author:anthonykim1 -author:joshspicer"
160+
"value": "$REPOS $MILESTONE -$MINE is:issue is:closed reason:completed sort:updated-asc label:bug -label:unreleased -label:verified -label:z-author-verified -label:on-testplan -label:*duplicate -label:duplicate -label:invalid -label:*as-designed -label:*out-of-scope -label:error-telemetry -label:verification-steps-needed -label:verification-found -author:aeschli -author:alexdima -author:alexr00 -author:AmandaSilver -author:andreamah -author:bamurtaugh -author:bpasero -author:chrisdias -author:chrmarti -author:Chuxel -author:claudiaregio -author:connor4312 -author:dbaeumer -author:deepak1556 -author:devinvalenciano -author:digitarald -author:DonJayamanne -author:egamma -author:fiveisprime -author:gregvanl -author:hediet -author:isidorn -author:joaomoreno -author:joyceerhl -author:jrieken -author:kieferrm -author:lramos15 -author:lszomoru -author:meganrogge -author:misolori -author:mjbvz -author:rebornix -author:roblourens -author:rzhao271 -author:sandy081 -author:sbatten -author:stevencl -author:tanhakabir -author:TylerLeonhardt -author:Tyriar -author:weinand -author:amunger -author:karthiknadig -author:eleanorjboyd -author:Yoyokrazy -author:paulacamargo25 -author:ulugbekna -author:aiday-mar -author:daviddossett -author:bhavyaus -author:justschen -author:benibenj -author:luabud -author:anthonykim1 -author:joshspicer -author:osortega -author:legomushroom"
161161
},
162162
{
163163
"kind": 1,

devspaces-code/code/.vscode/notebooks/my-work.github-issues

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"kind": 2,
99
"language": "github-issues",
10-
"value": "// list of repos we work in\n$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n// current milestone name\n$MILESTONE=milestone:\"October 2024\"\n"
10+
"value": "// list of repos we work in\n$REPOS=repo:microsoft/lsprotocol repo:microsoft/monaco-editor repo:microsoft/vscode repo:microsoft/vscode-anycode repo:microsoft/vscode-autopep8 repo:microsoft/vscode-black-formatter repo:microsoft/vscode-copilot repo:microsoft/vscode-copilot-release repo:microsoft/vscode-dev repo:microsoft/vscode-dev-chrome-launcher repo:microsoft/vscode-emmet-helper repo:microsoft/vscode-extension-telemetry repo:microsoft/vscode-flake8 repo:microsoft/vscode-github-issue-notebooks repo:microsoft/vscode-hexeditor repo:microsoft/vscode-internalbacklog repo:microsoft/vscode-isort repo:microsoft/vscode-js-debug repo:microsoft/vscode-jupyter repo:microsoft/vscode-jupyter-internal repo:microsoft/vscode-l10n repo:microsoft/vscode-livepreview repo:microsoft/vscode-markdown-languageservice repo:microsoft/vscode-markdown-tm-grammar repo:microsoft/vscode-mypy repo:microsoft/vscode-pull-request-github repo:microsoft/vscode-pylint repo:microsoft/vscode-python repo:microsoft/vscode-python-debugger repo:microsoft/vscode-python-tools-extension-template repo:microsoft/vscode-references-view repo:microsoft/vscode-remote-release repo:microsoft/vscode-remote-repositories-github repo:microsoft/vscode-remote-tunnels repo:microsoft/vscode-remotehub repo:microsoft/vscode-settings-sync-server repo:microsoft/vscode-unpkg repo:microsoft/vscode-vsce\n\n// current milestone name\n$MILESTONE=milestone:\"November 2024\"\n"
1111
},
1212
{
1313
"kind": 1,

devspaces-code/code/.vscode/settings.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,7 @@
168168
},
169169
"css.format.spaceAroundSelectorSeparator": true,
170170
"typescript.enablePromptUseWorkspaceTsdk": true,
171-
"eslint.useFlatConfig": true
171+
"eslint.useFlatConfig": true,
172+
"editor.occurrencesHighlightDelay": 0,
173+
"typescript.experimental.expandableHover": true,
172174
}

devspaces-code/code/ThirdPartyNotices.txt

+33-5
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,34 @@ suitability for any purpose.
263263

264264
---------------------------------------------------------
265265

266+
autocomplete 2.684.0 - MIT
267+
https://github.com/withfig/autocomplete
268+
269+
MIT License
270+
271+
Copyright (c) 2021 Hercules Labs Inc. (Fig)
272+
273+
Permission is hereby granted, free of charge, to any person obtaining a copy
274+
of this software and associated documentation files (the "Software"), to deal
275+
in the Software without restriction, including without limitation the rights
276+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
277+
copies of the Software, and to permit persons to whom the Software is
278+
furnished to do so, subject to the following conditions:
279+
280+
The above copyright notice and this permission notice shall be included in all
281+
copies or substantial portions of the Software.
282+
283+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
284+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
285+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
286+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
287+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
288+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
289+
SOFTWARE.
290+
---------------------------------------------------------
291+
292+
---------------------------------------------------------
293+
266294
cacheable-request 7.0.4 - MIT
267295

268296

@@ -545,7 +573,7 @@ to the base-name name of the original file, and an extension of txt, html, or si
545573

546574
---------------------------------------------------------
547575

548-
go-syntax 0.7.7 - MIT
576+
go-syntax 0.7.8 - MIT
549577
https://github.com/worlpaker/go-syntax
550578

551579
MIT License
@@ -593,7 +621,7 @@ without specific, written prior permission. Title to copyright in this document
593621

594622
---------------------------------------------------------
595623

596-
Ionic documentation 1.2.4 - Apache2
624+
Ionic documentation 1.2.4 - Apache-2.0
597625
https://github.com/ionic-team/ionic-site
598626

599627
Copyright Drifty Co. http://drifty.com/.
@@ -861,7 +889,7 @@ SOFTWARE.
861889

862890
---------------------------------------------------------
863891

864-
jlelong/vscode-latex-basics 1.7.0 - MIT
892+
jlelong/vscode-latex-basics 1.9.0 - MIT
865893
https://github.com/jlelong/vscode-latex-basics
866894

867895
Copyright (c) vscode-latex-basics authors
@@ -977,7 +1005,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SO
9771005

9781006
---------------------------------------------------------
9791007

980-
language-docker 0.0.0 - Apache2
1008+
language-docker 0.0.0 - Apache-2.0
9811009
https://github.com/moby/moby
9821010

9831011
Apache License
@@ -2603,7 +2631,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26032631

26042632
---------------------------------------------------------
26052633

2606-
Web Background Synchronization - Apache2
2634+
Web Background Synchronization - Apache-2.0
26072635
https://github.com/WICG/background-sync
26082636

26092637
Apache License

devspaces-code/code/build/.webignore

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ vscode-textmate/webpack.config.js
2626
@xterm/addon-image/src/**
2727
@xterm/addon-image/out/**
2828

29+
@xterm/addon-ligatures/src/**
30+
@xterm/addon-ligatures/out/**
31+
2932
@xterm/addon-search/src/**
3033
@xterm/addon-search/out/**
3134
@xterm/addon-search/fixtures/**

devspaces-code/code/build/azure-pipelines/alpine/product-build-alpine.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ steps:
1010
- task: AzureKeyVault@2
1111
displayName: "Azure Key Vault: Get Secrets"
1212
inputs:
13-
azureSubscription: "vscode-builds-subscription"
13+
azureSubscription: vscode
1414
KeyVaultName: vscode-build-secrets
1515
SecretsFilter: "github-distro-mixin-password"
1616

@@ -59,7 +59,7 @@ steps:
5959

6060
- task: Docker@1
6161
inputs:
62-
azureSubscriptionEndpoint: "vscode-builds-subscription"
62+
azureSubscriptionEndpoint: vscode
6363
azureContainerRegistry: vscodehub.azurecr.io
6464
command: "Run an image"
6565
imageName: "vscode-linux-build-agent:alpine-$(VSCODE_ARCH)"

devspaces-code/code/build/azure-pipelines/cli/cli-compile.yml

+3
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ steps:
115115
SearchPattern: 'code.pdb'
116116
SymbolServerType: TeamServices
117117
SymbolsProduct: 'code'
118+
ArtifactServices.Symbol.AccountName: microsoft
119+
ArtifactServices.Symbol.PAT: $(System.AccessToken)
120+
ArtifactServices.Symbol.UseAAD: false
118121
displayName: Publish Symbols
119122

120123
- task: CopyFiles@2

0 commit comments

Comments
 (0)