g3log/.travis.yml

27 lines
410 B
YAML
Raw Normal View History

sudo: required
2014-10-10 06:52:33 +02:00
language: cpp
git:
quiet: true
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-12 07:00:18 +02:00
script: "./scripts/buildAndRunTests.sh"
2016-12-06 07:26:14 +01:00
2016-12-06 07:23:16 +01:00