File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments