From 154a51945008e7ff87fef08f1ed805ddc8946033 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Mon, 22 Apr 2013 08:12:09 -0700 Subject: [PATCH] travis: pull in gtest before building --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c66d0d2..aec9d7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,7 @@ language: cpp compiler: - gcc - clang -script: ./bootstrap.py && ./ninja ninja_test && ./ninja_test +before_install: + - sudo apt-get update -qq + - sudo apt-get install libgtest-dev +script: ./bootstrap.py && ./configure.py --with-gtest=/usr/src/gtest && ./ninja ninja_test && ./ninja_test -- 2.7.4