Skip to content

Establish cicd workflow to build and publish FastVideo and STA Kernel #146

Establish cicd workflow to build and publish FastVideo and STA Kernel

Establish cicd workflow to build and publish FastVideo and STA Kernel #146

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12' # or any version you need
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install torch
pip install packaging ninja
pip install pytest
- name: Install CUDA 12.4.1
uses: Jimver/[email protected]
id: cuda-toolkit
with:
cuda: 12.4.1
linux-local-args: '["--toolkit"]'
method: 'network'
sub-packages: '["nvcc"]'
- name: Install Fast Video
run: |
pip install -e .
- name: Run Pytest
run: |
pytest --ignore csrc/sliding_tile_attention/test