travis_steps.sh 394 Bytes
Newer Older
1
2
3
4
5
#!/bin/bash
WHEELHOUSE=$PWD/wheelhouse
if [ !-d $WHEELHOUSE ]; then mkdir wheelhouse; fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
    source travis_osx_steps.sh
6
    whl_tail="*.whl"
7
8
else
    source travis_linux_steps.sh
9
    whl_tail="*manylinux1_x86_64.whl"
10
11
12
13
fi

function install_wheel {
    if [ -n "$TEST_DEPENDS" ]; then pip install $TEST_DEPENDS; fi
14
    pip install $WHEELHOUSE/$whl_tail
15
}