Skip to content

Commit 9e8e9cd

Browse files
committed
.
1 parent 1c0b022 commit 9e8e9cd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/linux_cuda_wheel.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,22 @@ jobs:
8383
miniconda-version: "latest"
8484
activate-environment: test
8585
python-version: ${{ matrix.python-version }}
86+
- name: Check env
87+
run: |
88+
env
89+
conda info
8690
- name: Update pip
87-
run: ${CONDA_RUN} python -m pip install --upgrade pip
91+
run: python -m pip install --upgrade pip
8892
- name: Install PyTorch
8993
run: |
90-
${CONDA_RUN} python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
94+
conda activate test
95+
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu${{ env.cuda_version_without_periods }}
9196
- name: Install torchcodec from the wheel
9297
run: |
9398
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
9499
echo Installing $wheel_path
95-
${CONDA_RUN} python -m pip install $wheel_path -vvv
100+
conda activate test
101+
python -m pip install $wheel_path -vvv
96102
97103
- name: Check out repo
98104
uses: actions/checkout@v3

0 commit comments

Comments
 (0)