test_multibuild.sh 1.14 KB
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
if [ -n "$IS_OSX" ]; then
    source osx_utils.sh
11
    # osx_utils defines MACPYTHON_DEFAULT_OSX
12
13
    MB_PYTHON_OSX_VER=${MB_PYTHON_OSX_VER:-$MACPYTHON_DEFAULT_OSX}
    get_macpython_environment $PYTHON_VERSION $MB_PYTHON_OSX_VER $VENV
14
15
    source tests/test_python_install.sh
    source tests/test_fill_pyver.sh
16
    source tests/test_fill_pypy_ver.sh
17
18
19
20
21
    source tests/test_osx_utils.sh
else
    source manylinux_utils.sh
    source tests/test_manylinux_utils.sh
fi
22
if [ -n "$TEST_BUILDS" ]; then
23
24
25
26
    if [ -n "$IS_OSX" ]; then
        source tests/test_library_builders.sh
    elif [ ! -x "$(command -v docker)" ]; then
        echo "Skipping build tests; no docker available"
27
28
29
    else
        touch config.sh
        source travis_linux_steps.sh
30
        build_multilinux $PLAT "source tests/test_library_builders.sh"
31
    fi
32
fi
33

34
35
source tests/test_supported_wheels.sh

36
37
# Exit 1 if any test errors
barf
Ivan Pozdeev's avatar
Ivan Pozdeev committed
38
39
# Don't need Travis' machinery trace
set +x