Skip to content

Commit 5a4291a

Browse files
committed
.
1 parent f8d5e69 commit 5a4291a

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/docs.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Docs
22

33
on:
4-
push:
5-
branches: [ main ]
6-
pull_request:
4+
workflow_run:
5+
workflows: ["Build and test Linux CUDA wheels"]
6+
types:
7+
- completed
78

89
defaults:
910
run:
@@ -26,9 +27,11 @@ jobs:
2627
python-version: '3.12'
2728
- name: Update pip
2829
run: python -m pip install --upgrade pip
29-
- name: Install torchcodec from nightly
30+
- name: Install torchcodec from the wheel
3031
run: |
31-
pip3 install --pre torch torchvision torchaudio torchcodec --index-url https://download.pytorch.org/whl/nightly/cu124
32+
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
33+
echo Installing $wheel_path
34+
${CONDA_RUN} python -m pip install $wheel_path -vvv
3235
- name: Install FFMPEG and other deps
3336
run: |
3437
conda install cuda-nvrtc=12.4 libnpp -c nvidia

0 commit comments

Comments
 (0)