Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug committed Jun 14, 2024
1 parent ab26e5f commit 961d341
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
# - name: Install dependencies
# run: |
# python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
- name: Install torchcodec wheel
run: |
if command -v "ffmpeg" &> /dev/null
Expand All @@ -86,8 +86,13 @@ jobs:
exit 1
fi
wheel=`ls dist/*.whl`
echo "LS"
ls
echo "LS DIST"
ls dist
wheel=`ls dist`
echo Installing $wheel
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
python -m pip install $wheel
- name: Install ffmpeg, post build
Expand Down

0 comments on commit 961d341

Please sign in to comment.