We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3451d2 commit 8179147Copy full SHA for 8179147
ci/run_setup.sh
@@ -15,9 +15,11 @@
15
source $(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/utils.sh
16
init
17
18
-export PATH=/usr/local/bin:${PATH}
19
-ln -sf $(which python${PY_VERSION}) /usr/local/bin/python
20
-ln -sf $(which pip${PY_VERSION}) /usr/local/bin/pip
+if [ -z "${WITH_ROCM}" ] || [ "${WITH_ROCM}" = "OFF" ]; then
+ export PATH=/usr/local/bin:${PATH}
+ ln -sf $(which python${PY_VERSION}) /usr/local/bin/python
21
+ ln -sf $(which pip${PY_VERSION}) /usr/local/bin/pip
22
+fi
23
echo "::group::Installing zstd"
24
apt install zstd -y
25
echo "::endgroup::"
0 commit comments