mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
#pretending we're C because otherwise ruby/rvm will initialize, even with "language: dm".
|
|
language: c
|
|
|
|
env:
|
|
global:
|
|
- BYOND_MAJOR="509"
|
|
- BYOND_MINOR="1307"
|
|
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 python python-pip -qq
|
|
|
|
install:
|
|
- pip install --user PyYaml -q
|
|
- pip install --user beautifulsoup4 -q
|
|
- 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:
|
|
- python tools/ss13_genchangelog.py html/changelog.html html/changelogs --dry-run
|
|
- 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}"
|