mame/3rdparty/bx/.travis.yml
Бранимир Караџић a851430879 Update bx to latest
2021-08-10 20:26:34 +02:00

30 lines
447 B
YAML

language: cpp
matrix:
include:
- compiler: gcc
os: linux
- compiler: clang
os: osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
- clang
script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then make test CXX="g++-8" CC="gcc-8"; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then make test; fi
branches:
only:
- master
notifications:
email: false
osx_image: xcode11