From 2e905c39b8cd030fe05216219539ca99bec27f1d Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Thu, 8 Dec 2016 13:02:21 +0100 Subject: travis-ci: Install mariadb only if no MySQL is present diff --git a/.travis.yml b/.travis.yml index 5b34fb9..7dfde73 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ install: - sudo apt-get install -qq --no-install-recommends autoconf automake - sudo apt-get install -qq --no-install-recommends faketime # Trusty related dependencies (not yet provided) - - sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server + - test "$(dpkg -l | grep -E "mysql-(client|server)-[0-9].[0-9]" | grep -c ^ii)" -gt 0 || sudo apt-get install -qq --no-install-recommends mariadb-client mariadb-server before_script: # ensure we have a test database in place for tests -- cgit v0.10-9-g596f