protot/3rdparty/bgfx/.travis.yml

34 lines
594 B
YAML
Raw Normal View History

2016-08-29 22:31:11 +02:00
language: cpp
matrix:
include:
- compiler: gcc
os: linux
- compiler: clang
os: osx
2018-02-03 17:39:28 +01:00
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
- clang
2016-08-29 22:31:11 +02:00
before_script:
2018-02-03 17:39:28 +01:00
- git clone --depth 1 https://github.com/bkaradzic/bx ../bx
- git clone --depth 1 https://github.com/bkaradzic/bimg ../bimg
2016-08-29 22:31:11 +02:00
script:
2018-02-03 17:39:28 +01:00
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make build CXX="g++-5" CC="gcc-5"; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make build; fi
2016-08-29 22:31:11 +02:00
branches:
only:
- master
notifications:
email: false
2018-02-03 17:39:28 +01:00
osx_image: xcode9.3