"humanize/vscode:/vscode.git/clone" did not exist on "c842f8f13cba5155940ddc09dac8fc16684e4462"
test_multibuild.sh 937 Bytes
Newer Older
1
# Test multibuild utilities
Ivan Pozdeev's avatar
Ivan Pozdeev committed
2
3
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
set -x
4
5
6
7
source common_utils.sh
source tests/utils.sh

source tests/test_common_utils.sh
8
source tests/test_fill_submodule.sh
9
10
11
12
13
if [ -n "$IS_OSX" ]; then
    source osx_utils.sh
    get_macpython_environment $PYTHON_VERSION $VENV
    source tests/test_python_install.sh
    source tests/test_fill_pyver.sh
14
    source tests/test_fill_pypy_ver.sh
15
16
17
18
19
    source tests/test_osx_utils.sh
else
    source manylinux_utils.sh
    source tests/test_manylinux_utils.sh
fi
20
if [ -n "$TEST_BUILDS" ]; then
21
22
23
24
25
26
27
    if [ -n "$IS_OSX" ] || [ ! -x "$(command -v docker)" ]; then
        source tests/test_library_builders.sh        
    else
        touch config.sh
        source travis_linux_steps.sh
        build_multilinux i686 "source tests/test_library_builders.sh"
    fi
28
fi
29
30
31

# Exit 1 if any test errors
barf
Ivan Pozdeev's avatar
Ivan Pozdeev committed
32
33
# Don't need Travis' machinery trace
set +x