g3log/.travis.yml

23 lines
387 B
YAML
Raw Normal View History

sudo: required
2014-10-09 22:52:33 -06:00
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
2014-10-11 23:00:18 -06:00
script: "./scripts/buildAndRunTests.sh"
2016-12-05 23:26:14 -07:00
2016-12-05 23:23:16 -07:00