Skip to content

Commit 3bcc474

Browse files
authored
Use default package location (#265)
In https://dev.azure.com/monacotools/Monaco/_build/results?buildId=229140&view=logs&j=9c6ceecd-5363-56f1-0e78-199c2ab175fa&t=dcca69f2-0e61-5643-f82d-945c312c3de6, we see the download task download the artifact to `$(Build.SourcesDirectory)` directly. It then tries to upload `$(Build.SourcesDirectory)/packages/python/dist` to ESRP later but can't find it. The default packageLocation value is `$(Build.SourcesDirectory)/dist`, which would have found the artifact. A question I have is where does the download task come from? I don't see any download tasks defined under `vscode-engineering/azure-pipelines/pypi-package`, but I do see one defined under https://github.com/microsoft/lsprotocol/blob/790f259e2019b47431f786d11c9b815441218f0c/azure-pipelines/template/publish_pypi.yml#L14. Is that template involved with the run, or is that just a coincidence? CC @lszomoru
1 parent 6d3bc4c commit 3bcc474

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

azure-pipelines/release-pypi.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ extends:
2222
pythonVersion: '3.7'
2323
# We don't ship any built in packages.
2424
generateNotice: false
25-
packageLocation: $(Build.SourcesDirectory)/packages/python/dist
2625
buildSteps:
2726
- script: python -m pip install nox
2827
displayName: Install nox

0 commit comments

Comments
 (0)