Skip to content

Commit

Permalink
New upload.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeDaBoss committed Mar 25, 2018
1 parent 291e2ca commit da2f557
Show file tree
Hide file tree
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.
17 changes: 17 additions & 0 deletions .dockerignore
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
22 changes: 22 additions & 0 deletions .editorconfig
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

14 changes: 14 additions & 0 deletions .gitattributes
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
22 changes: 22 additions & 0 deletions .gitignore
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
36 changes: 36 additions & 0 deletions .travis.yml
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
Loading

0 comments on commit da2f557

Please sign in to comment.