compiler:
- gcc
- clang
-
+
+env:
+ - USE_CMAKE=YES
+ - USE_CMAKE=NO
+
addons:
apt:
packages:
- texinfo
script:
- - autoreconf -i
- - ./configure
+ - mkdir build
+ - cd build
+ - if [ $USE_CMAKE == "YES" ] ; then cmake ../ ; fi
+ - if [ $USE_CMAKE == "NO" ] ; then pushd ../ ; autoreconf -i ; popd; fi
+ - if [ $USE_CMAKE == "NO" ] ; then ../configure ; fi
- make
- make check
Zdenek Crha (new Check API docs, fixes, and tests) | zdenekc
Mateusz Loskot (msvc port #2) | mloskot
Jose E. Marchesi (selective testing support) | jemarch
-
+
Contributors:
Cesar Ballardini (signals)
Anthony G. Basile (fix configure.ac and strsignal())
Friedrich Beckmann (mingw and msvc port #1)
Frank Bergmann (WIN32 tmpfile workaround)
+ Joshua Boyd (travis testing with both build systems, cmake fixes)
Ross Burton (pkg-config patch)
Bogdan Cristea (eclipse support in contrib dir)
Lucas Di Pentima (signals)