blob: f030f54e9ca1ad8bb85025ea67818f2c918a4882 [file] [log] [blame]
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: cpp
os: linux
dist: trusty
sudo: false
compiler: clang
cache: ccache
addons:
apt:
packages: gyp libgtest-dev ninja-build python
install:
# Download re2 from source because Ubuntu Trusty (the newest version of Ubuntu
# in Travis-CI) does not include a package. Packages from newer releases of
# Ubuntu are not binary compatible with Trusty. The re2 shared library is
# installed into $HOME/usr/local/lib.
- git clone https://github.com/google/re2.git
- make -C re2
- env DESTDIR="$HOME" make -C re2 install
script:
- cd cpp
- env CXXFLAGS="-I$HOME/usr/local/include" LDFLAGS="-L$HOME/usr/local/lib" GYP_GENERATORS="ninja" gyp --depth .
- ninja -C out/Default
after_script:
- env LD_LIBRARY_PATH="$HOME/usr/local/lib" out/Default/unit_tests