Files
ArchiSteamFarm/.travis.yml

41 lines
921 B
YAML
Raw Normal View History

2016-03-23 13:09:17 +01:00
language: csharp
solution: ArchiSteamFarm.sln
2016-03-23 13:26:03 +01:00
# Save bandwidth by limiting to only last 10 commits
2016-03-23 13:26:03 +01:00
git:
depth: 10
# Don't build other branches than master
branches:
only:
- master
# We test ASF on latest stable and nightly version of Mono
2016-03-23 13:09:17 +01:00
mono:
- weekly
# - alpha
# - beta
2016-03-23 13:26:03 +01:00
- latest
2016-04-21 01:02:07 +02:00
# 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
2016-04-21 01:02:07 +02:00
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