2017-01-26 04:58:50 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from itertools import combinations
|
|
|
|
|
|
|
|
travis_template = """\
|
|
|
|
language: generic
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
%s
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- autoconf
|
|
|
|
- ./configure ${COMPILER_FLAGS:+ \
|
|
|
|
CC="$CC $COMPILER_FLAGS" \
|
|
|
|
CXX="$CXX $COMPILER_FLAGS" } \
|
|
|
|
$CONFIGURE_FLAGS
|
|
|
|
- make -j3
|
|
|
|
- make -j3 tests
|
|
|
|
|
|
|
|
script:
|
|
|
|
- make check
|
|
|
|
"""
|
|
|
|
|
|
|
|
# The 'default' configuration is gcc, on linux, with no compiler or configure
|
|
|
|
# flags. We also test with clang, -m32, --enable-debug, --enable-prof,
|
2017-04-21 08:21:37 +08:00
|
|
|
# --disable-stats, and --with-malloc-conf=tcache:false. To avoid abusing
|
|
|
|
# travis though, we don't test all 2**7 = 128 possible combinations of these;
|
|
|
|
# instead, we only test combinations of up to 2 'unusual' settings, under the
|
|
|
|
# hope that bugs involving interactions of such settings are rare.
|
|
|
|
# Things at once, for C(7, 0) + C(7, 1) + C(7, 2) = 29
|
2017-01-26 04:58:50 +08:00
|
|
|
MAX_UNUSUAL_OPTIONS = 2
|
|
|
|
|
|
|
|
os_default = 'linux'
|
|
|
|
os_unusual = 'osx'
|
|
|
|
|
|
|
|
compilers_default = 'CC=gcc CXX=g++'
|
|
|
|
compilers_unusual = 'CC=clang CXX=clang++'
|
|
|
|
|
|
|
|
compiler_flag_unusuals = ['-m32']
|
|
|
|
|
|
|
|
configure_flag_unusuals = [
|
2017-04-21 08:21:37 +08:00
|
|
|
'--enable-debug',
|
|
|
|
'--enable-prof',
|
|
|
|
'--disable-stats',
|
|
|
|
'--with-malloc-conf=tcache:false',
|
2017-01-26 04:58:50 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
all_unusuals = (
|
|
|
|
[os_unusual] + [compilers_unusual] + compiler_flag_unusuals
|
|
|
|
+ configure_flag_unusuals
|
|
|
|
)
|
|
|
|
|
|
|
|
unusual_combinations_to_test = []
|
|
|
|
for i in xrange(MAX_UNUSUAL_OPTIONS + 1):
|
|
|
|
unusual_combinations_to_test += combinations(all_unusuals, i)
|
|
|
|
|
|
|
|
include_rows = ""
|
|
|
|
for unusual_combination in unusual_combinations_to_test:
|
|
|
|
os = os_default
|
|
|
|
if os_unusual in unusual_combination:
|
|
|
|
os = os_unusual
|
|
|
|
|
|
|
|
compilers = compilers_default
|
|
|
|
if compilers_unusual in unusual_combination:
|
|
|
|
compilers = compilers_unusual
|
|
|
|
|
|
|
|
compiler_flags = [
|
|
|
|
x for x in unusual_combination if x in compiler_flag_unusuals]
|
|
|
|
|
|
|
|
configure_flags = [
|
|
|
|
x for x in unusual_combination if x in configure_flag_unusuals]
|
|
|
|
|
|
|
|
# Filter out an unsupported configuration - heap profiling on OS X.
|
|
|
|
if os == 'osx' and '--enable-prof' in configure_flags:
|
|
|
|
continue
|
|
|
|
|
2017-04-11 04:26:21 +08:00
|
|
|
# We get some spurious errors when -Warray-bounds is enabled.
|
|
|
|
env_string = ('{} COMPILER_FLAGS="{}" CONFIGURE_FLAGS="{}" '
|
|
|
|
'EXTRA_CFLAGS="-Werror -Wno-array-bounds"').format(
|
2017-01-26 04:58:50 +08:00
|
|
|
compilers, " ".join(compiler_flags), " ".join(configure_flags))
|
|
|
|
|
|
|
|
include_rows += ' - os: %s\n' % os
|
|
|
|
include_rows += ' env: %s\n' % env_string
|
|
|
|
if '-m32' in unusual_combination and os == 'linux':
|
|
|
|
include_rows += ' addons:\n'
|
|
|
|
include_rows += ' apt:\n'
|
|
|
|
include_rows += ' packages:\n'
|
|
|
|
include_rows += ' - gcc-multilib\n'
|
|
|
|
|
|
|
|
print travis_template % include_rows
|