test_library_builders.sh 1.09 KB
Newer Older
1
2
# Test some library builders
# Smoke test
3
4
export BUILD_PREFIX="${PWD}/builds"
rm_mkdir $BUILD_PREFIX
5
source configure_build.sh
6
7
source library_builders.sh

8
9
start_spinner

xoviat's avatar
xoviat committed
10
suppress build_openssl
11
suppress build_libpng
xoviat's avatar
xoviat committed
12
13
suppress build_libwebp
suppress build_szip
14
suppress build_swig
15
# We need to find a failable test for build_github
Matthew Brett's avatar
Matthew Brett committed
16
# It needs a standalone C library with ./configure script.
17
18
19
20
21
22
23
# E.g. arb (below) requires a couple of other libraries.
# Run here just for the output, even though they fail.
(set +e ;
    build_github fredrik-johansson/arb 2.13.0 ;
    build_github glennrp/libpng v1.6.34 ;
    build_github wbhart/mpir mpir-3.0.0
    )
24
suppress build_flex
xoviat's avatar
xoviat committed
25
suppress build_openblas
Matthew Brett's avatar
Matthew Brett committed
26
27
28
29
30
suppress build_tiff
suppress build_lcms2
suppress build_xz
suppress build_freetype
suppress build_libyaml
31
32
33
34
35
36
if [ -z "$IS_OSX" ]; then
    # Gives compiler conformance error on macOS Sierra:
    # https://gist.github.com/5e20e137ea51fa8ca9fc443191f9d463
    # https://gist.github.com/ad86c474f3c0b7ec74290bb13f9414af
    suppress build_lzo
fi
Matthew Brett's avatar
Matthew Brett committed
37
suppress build_ragel
Matthew Brett's avatar
Matthew Brett committed
38
suppress build_cfitsio
Matthew Brett's avatar
Matthew Brett committed
39
suppress build_new_zlib
40
41

stop_spinner