Skip to content
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

add some light sdist tests and upload sdist in CI #1433

Merged
merged 5 commits into from
Sep 21, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tweak name
  • Loading branch information
timkpaine committed Sep 21, 2021
commit 06172d7a1f3dedff074c0eb35067dcf5aeb4902f
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ parameters:
type: stepList
default:
# Build a python sdist
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$(pipeline.startTime).tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
- bash: export SDIST_PUBLISH_NAME=perspective-python-$(Build.SourceBranchName)-$(Build.BuildId).tar.gz && cd $(System.DefaultWorkingDirectory)/python/perspective && ./scripts/build_sdist.sh
displayName: 'Build sdist'


# Save the artifact to Azure storage
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/python/perspective/dist/'
artifactName: 'perspective-python-$(Build.SourceBranchName)-$(Build.BuildId)-$(pipeline.startTime).tar.gz'
artifactName: 'perspective-python-$(Build.SourceBranchName)-$(Build.BuildId).tar.gz'

- name: pythonMacWheelSteps
type: stepList
Expand Down