You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
520 B
34 lines
520 B
language: cpp |
|
|
|
os: |
|
- linux |
|
- osx |
|
|
|
notifications: |
|
email: |
|
on_failure: change # default: always |
|
|
|
addons: |
|
# Packages for Linux |
|
apt: |
|
packages: |
|
- mingw-w64 |
|
|
|
env: |
|
- MAKE_BUILD=make |
|
- MAKE_BUILD=debug |
|
|
|
before_install: |
|
# Packages for OSX |
|
- if [ $TRAVIS_OS_NAME = osx ]; then brew install mingw-w64; fi |
|
|
|
before_script: |
|
- touch storm.dll |
|
- touch diabloui.dll |
|
|
|
script: |
|
- if [ $MAKE_BUILD = make ]; then make; fi |
|
- if [ $MAKE_BUILD = debug ]; then make debug; fi |
|
|
|
after_script: |
|
- make clean
|
|
|