diff options
author | Jan Wagner <waja@cyconet.org> | 2015-10-19 18:04:31 +0200 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2015-10-19 18:36:56 +0200 |
commit | 2a3f4b30ad905e4d858d5279af0aa2c5c44f4c4c (patch) | |
tree | 676a7f1b6691abc93724bca5923a10a25b3219a4 /.travis.yml | |
parent | f34df5bb24d8e4f64a922e9761702195516f6d25 (diff) | |
download | monitoring-plugins-2a3f4b30ad905e4d858d5279af0aa2c5c44f4c4c.tar.gz |
travis-ci: Install mariadb-client and mariadb-server
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a719c100..4f3c3e00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,9 @@ language: c before_install: - sudo apt-get update -qq - sudo apt-get purge -qq gawk - # ensure we have a test database in place for tests - - mysql -e "create database IF NOT EXISTS test;" -uroot + # http://docs.travis-ci.com/user/trusty-ci-environment/ indicates, no MySQL on Trusty (yet) + # # ensure we have a test database in place for tests + # - mysql -e "create database IF NOT EXISTS test;" -uroot install: - sudo apt-get install -qq --no-install-recommends perl autotools-dev libdbi-dev libldap2-dev libpq-dev libmysqlclient-dev libfreeradius-client-dev libkrb5-dev libnet-snmp-perl procps @@ -16,8 +17,11 @@ install: - sudo apt-get install -qq --no-install-recommends slapd ldap-utils - sudo apt-get install -qq --no-install-recommends autoconf automake - sudo apt-get install -qq --no-install-recommends faketime + - sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server before_script: + # ensure we have a test database in place for tests + - mysql -e "create database IF NOT EXISTS test;" -uroot - tools/setup - ./configure --enable-libtap - make |