forked from Sanerres/vgstation13
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (30 loc) · 917 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pretending we're C because otherwise ruby/rvm will initialize, even with "language: dm".
language: c
env:
global:
- BYOND_MAJOR="507"
- BYOND_MINOR="1280"
matrix:
- DM_MAPFILE="tgstation"
- DM_MAPFILE="metaclub"
- DM_MAPFILE="defficiency"
- DM_MAPFILE="taxistation"
before_install:
- sudo apt-get update -qq
- sudo apt-get install libc6:i386 libgcc1:i386 libstdc++6:i386 -qq
install:
- curl "http://www.byond.com/download/build/${BYOND_MAJOR}/${BYOND_MAJOR}.${BYOND_MINOR}_byond_linux.zip" -o byond.zip
- unzip byond.zip
- cd byond
- sudo make install
- cd ..
script:
- bash dm.sh -M${DM_MAPFILE} vgstation13.dme
notifications:
irc:
channels:
- "irc.rizon.net#vgstation"
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
- "Change view : %{compare_url}"
- "Build details : %{build_url}"