-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Don't install things to home directory, add workflow to test rele…
…ase pipelines (#706) Summary: Noticed we were getting extra conda packges from the home directory on the M1 runners. Making this PR to reduce the amount that we're using the home directory. Will probably make it unwritable in the future so this is a pre-emptive step to that. Also adds a workflow to test the release pipelines without actually releasing a new binary. Signed-off-by: Eli Uriegas <[email protected]> Pull Request resolved: #706 Reviewed By: ejguan Differential Revision: D38406845 Pulled By: seemethere fbshipit-source-id: 1d312c3e1db34497c546a9b842ac7ba01d2a7ee3
- Loading branch information
1 parent
9375899
commit fd648a4
Showing
2 changed files
with
56 additions
and
28 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Test Release Pipelines | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/pull_release.yml | ||
- .github/workflows/_build_test_upload.yml | ||
|
||
jobs: | ||
build_test_upload: | ||
if: github.repository == 'pytorch/data' | ||
uses: ./.github/workflows/_build_test_upload.yml | ||
with: | ||
branch: "" | ||
pre_dev_release: true | ||
pytorch_version: "" | ||
do-upload: false | ||
secrets: | ||
PYTORCH_BINARY_AWS_ACCESS_KEY_ID: "" | ||
PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY: "" | ||
CONDA_TEST_PYTORCHBOT_TOKEN: "" |