-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Nova] Caller for Conda M1 builds (#6915)
* [Nova] Caller for Conda M1 builds * rename job
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Build M1 Conda | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- nightly | ||
workflow_dispatch: | ||
|
||
jobs: | ||
generate-matrix: | ||
uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main | ||
with: | ||
package-type: conda | ||
os: macos-arm64 | ||
test-infra-repository: pytorch/test-infra | ||
test-infra-ref: main | ||
build: | ||
needs: generate-matrix | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- repository: pytorch/vision | ||
pre-script: "" | ||
post-script: "" | ||
conda-package-directory: packaging/torchvision | ||
smoke-test-script: test/smoke_test.py | ||
package-name: torchvision | ||
name: ${{ matrix.repository }} | ||
uses: pytorch/test-infra/.github/workflows/build_conda_macos.yml@main | ||
with: | ||
conda-package-directory: ${{ matrix.conda-package-directory }} | ||
repository: ${{ matrix.repository }} | ||
ref: "" | ||
test-infra-repository: pytorch/test-infra | ||
test-infra-ref: main | ||
build-matrix: ${{ needs.generate-matrix.outputs.matrix }} | ||
pre-script: ${{ matrix.pre-script }} | ||
post-script: ${{ matrix.post-script }} | ||
package-name: ${{ matrix.package-name }} | ||
smoke-test-script: ${{ matrix.smoke-test-script }} | ||
runner-type: macos-m1-12 | ||
# Using "development" as trigger event so these binaries are not uploaded | ||
# to official channels yet | ||
trigger-event: development | ||
secrets: | ||
CONDA_PYTORCHBOT_TOKEN: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }} |