Skip to content

Commit

Permalink
Added a .travis.yml file for Travis CI.
Browse files Browse the repository at this point in the history
This isn't used yet due to possible issues with existing PRs, but having
it on the repo will help.

Signed-off-by: Mloc-Argent <[email protected]>
  • Loading branch information
mloc committed Jan 12, 2014
1 parent 45d05c7 commit 01b4a05
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#pretending we're C because otherwise ruby/rvm will initialize, even with "language: dm".
language: c

env:
BYOND_MAJOR="503"
BYOND_MINOR="1224"

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:
- DreamMaker tgstation.dme

0 comments on commit 01b4a05

Please sign in to comment.