g3log/.travis.yml
Kjell Hedström cb4a94da7d
Cloud CI: updated for travis OSX + Ubuntu. Simplified setup (#301)
* updated for travis OSX + Ubuntu. Simplified setup

* more robust script for test
2019-02-18 21:01:30 -07:00

23 lines
387 B
YAML

sudo: required
language: cpp
matrix:
include:
- os: linux
dist: xenial
- os: osx
osx_image: xcode10.1
compiler:
- gcc
# - clang
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then uname -a; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo uname -a; sudo sh scripts/.travis-bootstrap-ubuntu.sh; fi
script: "./scripts/buildAndRunTests.sh"