"platforms/cuda/vscode:/vscode.git/clone" did not exist on "01440b4637ece60d5c1e61d598e03e92f83efd6e"
Commit 3ffa2d1e authored by mattip's avatar mattip
Browse files

fix where UNICODE_WIDTH is defined, remove debug cruft

parent be1744e6
...@@ -16,6 +16,12 @@ DOWNLOADS_SDIR=downloads ...@@ -16,6 +16,12 @@ DOWNLOADS_SDIR=downloads
PYPY_URL=https://bitbucket.org/pypy/pypy/downloads PYPY_URL=https://bitbucket.org/pypy/pypy/downloads
GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
# Unicode width, default 32. Used here and in travis_linux_steps.sh
# In docker_build_wrap.sh it is passed in when calling "docker run"
# The docker test images also use it when choosing the python to run
# with, so it is passed in when calling "docker run" for tests.
UNICODE_WIDTH=${UNICODE_WIDTH:-32}
if [ $(uname) == "Darwin" ]; then IS_OSX=1; fi if [ $(uname) == "Darwin" ]; then IS_OSX=1; fi
# Work round bug in travis xcode image described at # Work round bug in travis xcode image described at
...@@ -343,7 +349,6 @@ function install_wheel { ...@@ -343,7 +349,6 @@ function install_wheel {
local supported_wheels=$($PYTHON_EXE $MULTIBUILD_DIR/supported_wheels.py $wheelhouse/*.whl) local supported_wheels=$($PYTHON_EXE $MULTIBUILD_DIR/supported_wheels.py $wheelhouse/*.whl)
if [ -z "$supported_wheels" ]; then if [ -z "$supported_wheels" ]; then
echo "ERROR: no supported wheels found" echo "ERROR: no supported wheels found"
ls $wheelhouse/*.whl
exit 1 exit 1
fi fi
# Install compatible wheel # Install compatible wheel
......
...@@ -11,9 +11,6 @@ set -e ...@@ -11,9 +11,6 @@ set -e
# Change into root directory of repo # Change into root directory of repo
cd /io cd /io
# Unicode width, default 32
UNICODE_WIDTH=${UNICODE_WIDTH:-32}
# Location of wheels, default "wheelhouse" # Location of wheels, default "wheelhouse"
WHEEL_SDIR=${WHEEL_SDIR:-wheelhouse} WHEEL_SDIR=${WHEEL_SDIR:-wheelhouse}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment