You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
491 B
YAML
24 lines
491 B
YAML
language: c
|
|
|
|
env:
|
|
- EnableNuGetPackageRestore=true
|
|
|
|
before_install:
|
|
# Make sure mono is installed,
|
|
# pipe stdout to dev/null because qq is still too chatty
|
|
- sudo apt-get update -qq > /dev/null
|
|
- sudo apt-get install -qq mono-devel > /dev/null
|
|
# update root certs for nuget
|
|
- mozroots --import --sync
|
|
|
|
script:
|
|
- .ci/build.sh
|
|
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- "irc.gamesurge.net#opensteamworks"
|
|
on_success: always
|
|
on_failure: always
|
|
skip_join: true
|