bgfx/.travis.yml

34 lines
594 B
YAML
Raw Normal View History

2016-01-19 19:58:06 -08:00
language: cpp
matrix:
include:
- compiler: gcc
os: linux
2016-01-20 21:08:21 -08:00
- compiler: clang
os: osx
2016-01-19 19:58:06 -08:00
2016-10-29 11:29:08 -07:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
2019-02-07 08:23:21 -08:00
- gcc-8
- g++-8
2016-10-29 11:29:08 -07:00
- clang
2016-01-19 19:58:06 -08:00
before_script:
2017-04-03 23:07:35 -07:00
- git clone --depth 1 https://github.com/bkaradzic/bx ../bx
- git clone --depth 1 https://github.com/bkaradzic/bimg ../bimg
2016-01-19 19:58:06 -08:00
script:
2019-02-07 08:24:15 -08:00
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make build CXX="g++-8" CC="gcc-8"; fi
2016-10-29 11:29:08 -07:00
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make build; fi
2016-01-19 19:58:06 -08:00
branches:
only:
- master
notifications:
email: false
2017-12-25 12:23:02 -08:00
osx_image: xcode9.3