-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from pjh5/master
Adding AWS S3Upload Task for wheel Windows jobs
- Loading branch information
Showing
5 changed files
with
30 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,3 +68,5 @@ conda/torchvision-src | |
wheel/pytorch-src | ||
wheel/torchvision-src | ||
torch_nightly.html | ||
|
||
node_modules |
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
parameters: | ||
cuVer: '' | ||
cudaVer: '' | ||
|
||
steps: | ||
- task: AmazonWebServices.aws-vsts-tools.S3Upload.S3Upload@1 | ||
displayName: 'Upload ${{ parameters.cuVer }} wheel to S3' | ||
inputs: | ||
awsCredentials: 'Pytorch S3 bucket' | ||
bucketName: 'pytorch' | ||
sourceFolder: 'windows/output/${{ parameters.cudaVer }}' | ||
globExpressions: '*.whl' | ||
targetFolder: 'whl/nightly/${{ parameters.cuVer }}/' | ||
fileAcl: 'public read' | ||
flattenFolders: 'true' |