forked from frosty-dev/SS13-SCP13
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
291e2ca
commit da2f557
Showing
4,322 changed files
with
414,574 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.git | ||
!.git/HEAD | ||
!.git/logs/HEAD | ||
baystation12.dmb | ||
baystation12.rsc | ||
baystation12.dyn.rsc | ||
baystation12.dyn.rsc.lk | ||
baystation12.int | ||
libmysql.dll | ||
.dockerignore | ||
Dockerfile | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
.github | ||
sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
root = true | ||
|
||
[*] | ||
insert_final_newline = false | ||
trim_trailing_whitespace = true | ||
|
||
[*.dm] | ||
end_of_line = crlf | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.dmm] | ||
end_of_line = crlf | ||
|
||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# dmm map merger hook | ||
# needs additional setup, see tools/mapmerge/install.txt | ||
*.dmm merge=merge-dmm | ||
|
||
# dmi icon merger hook | ||
# needs additional setup, see tools/dmitool/merging.txt | ||
*.dmi merge=merge-dmi | ||
|
||
# force changelog merging to use union | ||
html/changelog.html merge=union | ||
|
||
# Declare files that will always have CRLF line endings on checkout. | ||
*.dm text eol=crlf | ||
*.dmm text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ignore misc BYOND files | ||
Thumbs.db | ||
*.log | ||
*.int | ||
*.rsc | ||
*.dmb | ||
*.lk | ||
*.backup | ||
*.before | ||
data/ | ||
cfg/ | ||
build_log.txt | ||
use_map | ||
stopserver | ||
reboot_called | ||
atupdate | ||
__pycache__ | ||
|
||
# ignore config, but not subdirs | ||
!config/*/ | ||
config/* | ||
sql/test_db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
language: generic | ||
sudo: false | ||
dist: precise | ||
|
||
env: | ||
global: | ||
BYOND_MAJOR="511" | ||
BYOND_MINOR="1385" | ||
|
||
# ALL MAPS MUST BE PRESENT HERE | ||
# IF THEY ARE NOT, YOUR BUILD WILL FAIL | ||
matrix: | ||
- TEST=CODE | ||
- TEST=WEB | ||
- TEST=MAP MAP_PATH=example | ||
- TEST=MAP MAP_PATH=torch | ||
- TEST=MAP MAP_PATH=overmap_example | ||
- TEST=MAP MAP_PATH=away_sites_testing | ||
|
||
cache: | ||
directories: | ||
- tgui/node_modules | ||
- $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR} | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libc6-i386 | ||
- libgcc1:i386 | ||
- libstdc++6:i386 | ||
- oracle-java8-set-default | ||
- python | ||
- python-pip | ||
|
||
script: | ||
- test/run-test.sh |
Oops, something went wrong.