Azure / azure-dev

A developer CLI that reduces the time it takes for you to get started on Azure. The Azure Developer CLI (azd) provides a set of developer-friendly commands that map to key stages in your workflow - code, build, deploy, monitor, repeat.
https://aka.ms/azd
MIT License
404 stars 195 forks source link

VS Code extension CI pipeline: package creation fails on Windows #286

Open karolz-ms opened 2 years ago

karolz-ms commented 2 years ago

Yesterday the VS Code CI pipeline started failing on Windows during package creation step, with the following error

Executing prepublish script 'npm run vscode:prepublish'...

> azure-dev@0.1.0 vscode:prepublish
> npm run build

The filename, directory name, or volume label syntax is incorrect.
 ERROR  npm failed with exit code 1

@danieljurek and I investigated and narrowed the issue down to vsce tool being inaccessible after apparently successful installation. @danieljurek was able to reproduce on his machine, I was not. Mac and Linux pipelines are not affected.

The VS Code ext is a node app with no native dependencies, so the result of packaging on Mac or Linux is perfectly usable on all platforms. Since this does not block public preview, we will disable the packaging step on Windows for now. This issue is to have the Windows pipeline fixed post PP.

danieljurek commented 2 years ago

Packaging in Windows disabled in this PR -- https://github.com/Azure/azure-dev/pull/1337... We can add it back in later.