Travis CI: Build against sqlite3 library, don't autogen
This commit is contained in:
parent
ddc6c9a922
commit
2a1e5de8cb
1 changed files with 5 additions and 6 deletions
11
.travis.yml
11
.travis.yml
|
@ -13,7 +13,7 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test']
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool']
|
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
|
||||||
env: COMPILER=gcc-4.8
|
env: COMPILER=gcc-4.8
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
|
@ -21,7 +21,7 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test']
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool']
|
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
|
||||||
env: COMPILER=gcc-4.9
|
env: COMPILER=gcc-4.9
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
|
@ -29,7 +29,7 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test']
|
sources: ['ubuntu-toolchain-r-test']
|
||||||
packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool']
|
packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
|
||||||
env: COMPILER=gcc-5
|
env: COMPILER=gcc-5
|
||||||
|
|
||||||
- os: linux
|
- os: linux
|
||||||
|
@ -37,7 +37,7 @@ matrix:
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
|
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
|
||||||
packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool']
|
packages: ['clang-3.7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev']
|
||||||
env: COMPILER=clang-3.7
|
env: COMPILER=clang-3.7
|
||||||
|
|
||||||
- os: osx
|
- os: osx
|
||||||
|
@ -52,7 +52,6 @@ cache:
|
||||||
ccache:
|
ccache:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- bash autogen.sh
|
- CC=$COMPILER ./configure --with-shared-sqlite
|
||||||
- CC=$COMPILER ./configure
|
|
||||||
- make -j4
|
- make -j4
|
||||||
- make install
|
- make install
|
||||||
|
|
Loading…
Reference in a new issue