Skip to content

Commit

Permalink
[fbsync] [Nova] Add Caller workflow for Linux Conda Builds (#6856)
Browse files Browse the repository at this point in the history
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
NicolasHug authored and facebook-github-bot committed Oct 31, 2022
1 parent 66875bc commit 6b34b42
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build-conda-linux.yml
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 }}

0 comments on commit 6b34b42

Please sign in to comment.