forked from TauCetiStation/TauCetiClassic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
72 lines (63 loc) · 1.59 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
language: generic
sudo: false
env:
global:
- BYOND_MAJOR=512
- BYOND_MINOR=1463
cache:
directories:
- $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}
before_install:
- chmod +x -R scripts/
- chmod +x test/run-test.sh
script:
- test/run-test.sh
matrix:
include:
- name: "DreamChecker"
env: SPACEMAN_DMM_VERSION=suite-1.1
cache:
directories: $HOME/spaceman_dmm/$SPACEMAN_DMM_VERSION
install:
- ./scripts/install-spaceman-dmm.sh dreamchecker
script:
- ~/dreamchecker
- name: "Code and Map Linting"
env: TEST=LINTING
addons:
apt:
packages:
- python3.5
- name: "Unit Tests - Box Station"
env:
- TEST=UNIT
- MAP_NAME="Box Station"
- MAP_META=boxstation
install:
- ./scripts/install-byond.sh
- source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
addons:
apt:
packages:
- libstdc++6:i386
- name: "Unit Tests - Gamma Station"
env:
- TEST=UNIT
- MAP_NAME="Gamma Station"
- MAP_META=gamma
install:
- ./scripts/install-byond.sh
- source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
addons:
apt:
packages:
- libstdc++6:i386
- name: "Compile Everything"
env: TEST=COMPILE
install:
- ./scripts/install-byond.sh
- source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
addons:
apt:
packages:
- libstdc++6:i386