mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 10:23:50 +01:00
27 lines
410 B
YAML
27 lines
410 B
YAML
sudo: required
|
|
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
|
|
|
|
script: "./scripts/buildAndRunTests.sh"
|
|
|
|
|
|
|