Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,17 +297,23 @@ jobs:
bash -c "$(curl -L http://${RUNNER}/scripts/env/init_compiler.sh)" @ ${{ matrix.cuda }} ${{ matrix.torch }} $python_version
fi

echo "== pyenv =="
pyenv version
echo "== python path =="
which python
echo "::group::pyenv versions"
pyenv versions
echo "::endgroup::"

echo "== python =="
python --version

echo "== nvcc =="
nvcc --version

echo "== torch =="
pip show torch

echo "::group::pip list"
pip list
echo "::endgroup::"

- name: Compile
if: env.SHOULD_RUN == 1
run: python setup.py bdist_wheel
Expand Down
Loading