mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-23 22:13:39 +00:00
dab5060005
saves time not to run update
30 lines
746 B
YAML
30 lines
746 B
YAML
language: c
|
|
sudo: false
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./install-cmocka-linux.sh; fi
|
|
script:
|
|
- make && make -C bindings/go && make -C bindings/go test && make test
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
os:
|
|
- linux
|
|
- osx
|
|
matrix:
|
|
include:
|
|
- if: branch = master
|
|
os: osx
|
|
script: brew install --HEAD unicorn && brew test unicorn
|
|
compiler: gcc
|
|
- if: branch = master
|
|
os: osx
|
|
script: brew install --HEAD unicorn && brew test unicorn
|
|
compiler: clang
|
|
allow_failures:
|
|
- os: osx
|
|
script: brew install --HEAD unicorn && brew test unicorn
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# mingw-w64 packages too old in precise
|