X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/9ea48ec30af1501ec4a19e32101c4cd1b1485365..4ce7eaefd47bfebbd04a4d8858a740793dbebf1e:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 4329ca7a..06426716 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool'] + packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-4.8 - os: linux @@ -21,7 +21,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool'] + packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-4.9 - os: linux @@ -29,7 +29,7 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test'] - packages: ['gcc-5', 'automake', 'autoconf', 'libtool'] + packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=gcc-5 - os: linux @@ -37,13 +37,14 @@ matrix: addons: apt: sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7'] - packages: ['clang-3.7', 'automake', 'autoconf', 'libtool'] + packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev'] env: COMPILER=clang-3.7 - os: osx compiler: clang env: COMPILER=clang LIBTOOLIZE=glibtoolize + osx_image: xcode7.3 cache: @@ -52,6 +53,6 @@ cache: script: - bash autogen.sh - - CC=$COMPILER ./configure + - CC=$COMPILER ./configure --with-shared-sqlite - make -j4 - make install