test_multibuild.sh 809 Bytes
Newer Older
1
2
3
4
5
# Test multibuild utilities
source common_utils.sh
source tests/utils.sh

source tests/test_common_utils.sh
6
source tests/test_fill_submodule.sh
7
8
9
10
11
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
12
    source tests/test_fill_pypy_ver.sh
13
14
15
16
17
    source tests/test_osx_utils.sh
else
    source manylinux_utils.sh
    source tests/test_manylinux_utils.sh
fi
18
if [ -n "$TEST_BUILDS" ]; then
19
20
21
22
23
24
25
    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
26
fi
27
28
29

# Exit 1 if any test errors
barf