blob: ab9647277e90864ce32f37df497407c866da9775 [file] [log] [blame]
# **********************************************************
# Copyright (c) 2016-2017 Google, Inc. All rights reserved.
# **********************************************************
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# * Neither the name of Google, Inc. nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
# Travis CI configuration:
notifications:
email:
# This overrides the default of sending to the committer and author.
recipients:
- dynamorio-devs@googlegroups.com
on_success: change
on_failure: always
# Don't run Travis on pushes to feature branches: pull requests cover those.
branches:
only:
- master
# We use Trusty to get cmake 2.8.12 instead of 2.8.7 from Precise:
sudo: required
dist: trusty
language:
- c
os:
- linux
- osx
# We request 2 runs, one with clang and one with gcc:
compiler:
- clang
- gcc
env:
# With or without cross-compiling:
- DYNAMORIO_CROSS_ONLY=yes
# We run 32-bit and 64-bit in parallel to speed things up.
- DYNAMORIO_CROSS_ONLY=no EXTRA_ARGS=32_only
- DYNAMORIO_CROSS_ONLY=no EXTRA_ARGS=64_only
matrix:
exclude:
# gcc on Travis claims to not be CMAKE_COMPILER_IS_GNUCC so we disable:
- os: osx
compiler: gcc
# We do not have 64-bit support on OSX yet (i#1979).
- os: osx
env: DYNAMORIO_CROSS_ONLY=no EXTRA_ARGS=64_only
# Cross-compile only on Linux:
- os: osx
env: DYNAMORIO_CROSS_ONLY=yes
# Cross-compile only with GCC:
- compiler: clang
env: DYNAMORIO_CROSS_ONLY=yes
# For C/C++ there is no default install, so we set "install", not "before_install".
install:
- uname -a
- if [[ "`uname`" == "Darwin" ]]; then brew install nasm; fi
# ImageMagick is present but these are not:
- if [[ "`uname`" == "Linux" ]]; then sudo apt-get -y install doxygen transfig; fi
# Install multilib for non-cross-compiling Linux builds:
- >
if [[ "`uname`" == "Linux" && $DYNAMORIO_CROSS_ONLY == no ]]; then
sudo apt-get -y install g++-multilib; fi
# Install cross-compilers for cross-compiling Linux build:
- >
if [[ "`uname`" == "Linux" && $DYNAMORIO_CROSS_ONLY == yes ]]; then
sudo apt-get -y install g++-arm-linux-gnueabihf g++-aarch64-linux-gnu; fi
script:
- suite/runsuite_wrapper.pl travis $EXTRA_ARGS