"wrappers/vscode:/vscode.git/clone" did not exist on "b3f88f6fcd000ef3f853e0b6635d78ee6820c016"
travis_steps.sh 381 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
WHEELHOUSE=$PWD/wheelhouse
if [ !-d $WHEELHOUSE ]; then mkdir wheelhouse; fi
PKG_NAME=${PKG_NAME:-$REPO_DIR}
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
    source travis_osx_steps.sh
else
    source travis_linux_steps.sh
fi

function install_wheel {
    if [ -n "$TEST_DEPENDS" ]; then pip install $TEST_DEPENDS; fi
    pip install -f $WHEELHOUSE --no-index $PKG_NAME
}