diff options
author | Elvis Pranskevichus <elvis@magic.io> | 2020-04-22 22:33:12 -0700 |
---|---|---|
committer | Elvis Pranskevichus <elvis@magic.io> | 2020-04-22 22:33:12 -0700 |
commit | a79c02ecdf2ec7b8bfb84c8af42691029a35829d (patch) | |
tree | 031480cd1d44ee55db00e2dd485f402051bdc0bb /.ci/build-manylinux-wheels.sh | |
parent | e7f341db0336870c09827b3159ed3a92ef7f64ac (diff) | |
download | immutables-a79c02ecdf2ec7b8bfb84c8af42691029a35829d.tar.gz immutables-a79c02ecdf2ec7b8bfb84c8af42691029a35829d.zip |
Drop Travis and Appveyor CI
Switch to Github Actions exclusively
Diffstat (limited to '.ci/build-manylinux-wheels.sh')
-rwxr-xr-x | .ci/build-manylinux-wheels.sh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.ci/build-manylinux-wheels.sh b/.ci/build-manylinux-wheels.sh deleted file mode 100755 index ce5e772..0000000 --- a/.ci/build-manylinux-wheels.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -set -e -x - -# Compile wheels -PYTHON="/opt/python/${PYTHON_VERSION}/bin/python" -PIP="/opt/python/${PYTHON_VERSION}/bin/pip" -${PIP} install --upgrade pip setuptools wheel~=0.31.1 -${PIP} install -r /io/.ci/requirements.txt -rm -rf /io/build -${PIP} wheel /io/ -w /io/dist/ - -# Bundle external shared libraries into the wheels. -for whl in /io/dist/*.whl; do - auditwheel repair $whl -w /io/dist/ - rm /io/dist/*-linux_*.whl -done - -# Grab docker host, where Postgres should be running. -export PGHOST=$(ip route | awk '/default/ { print $3 }' | uniq) -export PGUSER="postgres" - -PYTHON="/opt/python/${PYTHON_VERSION}/bin/python" -PIP="/opt/python/${PYTHON_VERSION}/bin/pip" -${PIP} install ${PYMODULE} --no-index -f file:///io/dist -rm -rf /io/tests/__pycache__ -"${PYTHON}" /io/tests/__init__.py -rm -rf /io/tests/__pycache__ |