Files
ArchiSteamFarm/.travis.yml
2017-01-06 13:29:53 +01:00

41 lines
921 B
YAML

language: csharp
solution: ArchiSteamFarm.sln
# Save bandwidth by limiting to only last 10 commits
git:
depth: 10
# Don't build other branches than master
branches:
only:
- master
# We test ASF on latest stable and nightly version of Mono
mono:
- weekly
# - alpha
# - beta
- latest
# Mono is often broken, allow all Mono failures by default
matrix:
allow_failures:
- mono: weekly
# - mono: alpha
# - mono: beta
- mono: latest
# Initialize our envsetup before building
before_script:
- source mono_envsetup.sh
# Push building notifications on Gitter
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/df82484f12510c3f2516
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always