Skip to content

Commit 29bc6dd

Browse files
committed
DEBUG
1 parent ade1c9b commit 29bc6dd

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/scripts/setup-env.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,16 +98,16 @@ echo '::group::Install TorchVision'
9898
python setup.py develop
9999
echo '::endgroup::'
100100

101-
echo '::group::Install torchvision-extra-decoders'
102-
# This can be done after torchvision was built
103-
if [[ "$(uname)" == "Linux" && "$(uname -m)" != "aarch64" ]]; then
104-
extra_decoders_channel="--pre --index-url https://download.pytorch.org/whl/nightly/cpu"
105-
else
106-
extra_decoders_channel=""
107-
fi
101+
# echo '::group::Install torchvision-extra-decoders'
102+
# # This can be done after torchvision was built
103+
# if [[ "$(uname)" == "Linux" && "$(uname -m)" != "aarch64" ]]; then
104+
# extra_decoders_channel="--pre --index-url https://download.pytorch.org/whl/nightly/cpu"
105+
# else
106+
# extra_decoders_channel=""
107+
# fi
108108

109-
pip install torchvision-extra-decoders $extra_decoders_channel
110-
echo '::endgroup::'
109+
# pip install torchvision-extra-decoders $extra_decoders_channel
110+
# echo '::endgroup::'
111111

112112
echo '::group::Collect environment information'
113113
conda list

packaging/post_build_script.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
LD_LIBRARY_PATH="/usr/local/lib:$CUDA_HOME/lib64:$LD_LIBRARY_PATH" python packaging/wheel/relocate.py
33

4-
if [[ "$(uname)" == "Linux" && "$(uname -m)" != "aarch64" ]]; then
5-
extra_decoders_channel="--pre --index-url https://download.pytorch.org/whl/nightly/cpu"
6-
else
7-
extra_decoders_channel=""
8-
fi
4+
# if [[ "$(uname)" == "Linux" && "$(uname -m)" != "aarch64" ]]; then
5+
# extra_decoders_channel="--pre --index-url https://download.pytorch.org/whl/nightly/cpu"
6+
# else
7+
# extra_decoders_channel=""
8+
# fi
99

10-
pip install torchvision-extra-decoders $extra_decoders_channel
10+
# pip install torchvision-extra-decoders $extra_decoders_channel

0 commit comments

Comments
 (0)