Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Build improvements #256

Open
wants to merge 5 commits into
base: 0.9
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,33 @@ language: cpp
compiler:
- gcc
- clang

cache: ccache

sudo: required
dist: trusty

addons:
packages:
- libbz2-dev


env:
matrix:
- storage_engine=leveldb
- storage_engine=lmdb
- storage_engine=wiredtiger

script:
- pushd src
- make
- ./ardb-test
- storage_engine=leveldb make
- ./ardb-test
- storage_engine=lmdb make
- ./ardb-test
- storage_engine=wiredtiger make
- ./ardb-test
- popd

matrix:
include:
- compiler: gcc
env: DEFAULT_STORAGE_ENGINE=1 # travis doesn't like empty env sections
- compiler: clang
env: DEFAULT_STORAGE_ENGINE=1 # travis doesn't like empty env sections
os:
- linux