1branches: 2 except: 3 - /libpng[0-1][0-7]/ 4 - /v[0-1][.][0-7][.][0-9]+/ 5 6language: c 7 8os: 9 - freebsd 10 - linux 11 - osx 12 13env: 14 - AUTOMATION=cmake 15 - AUTOMATION=configure 16 - AUTOMATION=makefiles 17 18before_script: 19 - 'if test "$TRAVIS_OS_NAME" = "linux"; then export CI_CC="gcc"; else export CI_CC="clang"; fi' 20 - 'if test "$TRAVIS_OS_NAME" = "osx"; then export CI_CMAKE_GENERATOR="Xcode"; fi' 21 - 'if test "$TRAVIS_OS_NAME" != "osx"; then export CI_SANITIZERS="address,undefined"; fi' 22 - 'export CI_MAKEFILES="scripts/makefile.$CI_CC scripts/makefile.std"' 23 - 'export CI_MAKE_FLAGS=-j2' 24 - 'export CI_CMAKE_BUILD_FLAGS=-j2' 25 - 'export CI_CTEST_FLAGS=-j2' 26 27script: 28 - './ci/ci_verify_$AUTOMATION.sh' 29