Skip to content

Commit 483d147

Browse files
committed
.
1 parent a4b85d4 commit 483d147

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,10 @@ jobs:
7777
name: pytorch_torchcodec__${{ matrix.python-version }}_cu${{ env.cuda_version_without_periods }}_x86_64
7878
path: pytorch/torchcodec/dist/
7979
- name: Setup miniconda using test-infra
80-
uses: pytorch/test-infra/.github/actions/setup-miniconda@main
80+
uses: ahmadsharif1/test-infra/.github/actions/setup-miniconda@14bc3c2
8181
with:
8282
python-version: "3.9"
83+
default-packages: ""
8384
- name: Check env
8485
run: |
8586
${CONDA_RUN} env
@@ -88,7 +89,8 @@ jobs:
8889
run: ${CONDA_RUN} python -m pip install --upgrade pip
8990
- name: Install PyTorch
9091
run: |
91-
${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
92+
# ${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
93+
${CONDA_RUN} python -m pip install torch torchvision torchaudio
9294
${CONDA_RUN} python -c 'import torch; print(f"{torch.__version__}"); print(f"{torch.__file__}"); print(f"{torch.cuda.is_available()=}")'
9395
- name: Install torchcodec from the wheel
9496
run: |
@@ -106,7 +108,7 @@ jobs:
106108
# side-effect. It's OK.
107109
source packaging/helpers.sh
108110
assert_ffmpeg_not_installed
109-
${CONDA_RUN} conda install --yes ffmpeg=${{ matrix.ffmpeg-version-for-tests }} -c conda-forge
111+
${CONDA_RUN} conda install --yes ffmpeg=${{ matrix.ffmpeg-version-for-tests }} -c conda-forge -vvv
110112
111113
# ${CONDA_RUN} conda install --yes conda
112114
# ${CONDA_RUN} conda update --all --yes

0 commit comments

Comments
 (0)