-
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.
[fbsync] [Nova] Add Caller workflow for Linux Conda Builds (#6856)
Summary: * [Nova] Add Caller workflow for Linux Conda Builds * Add smoke tests script Reviewed By: datumbox Differential Revision: D40851023 fbshipit-source-id: 0a8a6fe341d4077c2cc138627d8ff8110a7ec767
- Loading branch information
1 parent
66875bc
commit 6b34b42
Showing
1 changed file
with
45 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,45 @@ | ||
name: Build Linux 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: linux | ||
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_linux.yml@main | ||
with: | ||
conda-package-directory: ${{ matrix.conda-package-directory }} | ||
repository: ${{ matrix.repository }} | ||
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 }} | ||
# 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 }} |