-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try faster compression when publishing from vsix by just extracting t…
…he manifest files
- Loading branch information
1 parent
e7ec6df
commit e0fd393
Showing
2 changed files
with
78 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
SET AGENT_WORKFOLDER=c:\temp | ||
SET SYSTEM_DEFAULTWORKINGDIRECTORY=C:\Users\jesse\source\repos\vsts-ping-task-demo | ||
set INPUT_CWD=C:\Users\jesse\source\repos\vsts-ping-task-demo | ||
set INPUT_ROOTFOLDER=C:\Users\jesse\source\repos\vsts-ping-task-demo | ||
SET AGENT_WORKFOLDER=%temp% | ||
SET SYSTEM_DEFAULTWORKINGDIRECTORY=C:\Users\JesseHouwing\source\azure-pipelines-variable-tasks\ | ||
set INPUT_CWD=C:\Users\JesseHouwing\source\azure-pipelines-variable-tasks\ | ||
set INPUT_ROOTFOLDER=C:\Users\JesseHouwing\source\azure-pipelines-variable-tasks\ | ||
set INPUT_VSIXFILE=C:\Users\JesseHouwing\source\azure-pipelines-variable-tasks\jessehouwing.jessehouwing-vsts-variable-tasks-3.0.0.vsix | ||
SET INPUT_CONNECTTO=VsTeam | ||
SET INPUT_FILETYPE=vsix | ||
SET INPUT_EXTENSIONVISIBILITY=default | ||
SET INPUT_EXTENSIONVERSION=1.2.3 | ||
SET INPUT_EXTENSIONVERSION=3.26.27 | ||
SET INPUT_UPDATETASKSVERSION=true | ||
SET INPUT_UPDATETASKSVERSIONTYPE=major | ||
SET INPUT_UPDATETASKSVERSIONTYPE=minor | ||
SET INPUT_CONNECTEDSERVICENAME=A | ||
SET ENDPOINT_URL_A=https://marketplace.visualstudio.com | ||
SET ENDPOINT_AUTH_A={ "parameters": { "apitoken": "token", "username": "user", "password": "password" }, "Scheme": "basic" } | ||
SET INPUT_VSIXFILE=C:\Users\jesse\source\repos\vsts-ping-task-demo\jessehouwing.jessehouwing-vsts-ping-task-2.1.2.vsix | ||
|
||
set NODE_ENV=production | ||
set NO_UPDATE_NOTIFIER=true | ||
|
||
cmd /c "npm run build:tasks" | ||
fnm use v16 | ||
|
||
pushd BuildTasks\TfxInstaller\TfxInstaller | ||
node TfxInstaller.js | ||
popd | ||
cmd /c "npm run build:tasks" | ||
|
||
set __TFXPATH=c:\temp\agent\tools\tfx\0.7.11\x64 | ||
set __TFXPATH=C:\Users\JesseHouwing\AppData\Local\fnm_multishells\5548_1672346643184 | ||
|
||
pushd BuildTasks\PublishExtension\v4\PublishExtension\v4 | ||
SET PREVIEW_FAST_UPDATE=false | ||
node PublishExtension.js | ||
|
||
pushd BuildTasks\PublishExtension\PublishExtension | ||
c:\TfsData\jessehouwing\externals.2.111.1\node\bin\node.exe PublishExtension.js | ||
c:\TfsData\jessehouwing\externals.2.136.1\node\bin\node.exe PublishExtension.js | ||
SET PREVIEW_FAST_UPDATE=true | ||
node PublishExtension.js | ||
popd |