byond version, also more like this

This commit is contained in:
Putnam3145
2021-07-25 17:01:36 -07:00
parent b7af177012
commit c78a7af848
3 changed files with 8 additions and 5 deletions

View File

@@ -4,8 +4,8 @@
#Final authority on what's required to fully build the project #Final authority on what's required to fully build the project
# byond version # byond version
export BYOND_MAJOR=513 export BYOND_MAJOR=514
export BYOND_MINOR=1536 export BYOND_MINOR=1556
#rust_g git tag #rust_g git tag
export RUST_G_VERSION=0.4.8 export RUST_G_VERSION=0.4.8

View File

@@ -5,8 +5,6 @@ source dependencies.sh
mkdir -p ~/.byond/bin mkdir -p ~/.byond/bin
wget -O ~/.byond/bin/librust_g.so "https://github.com/tgstation/rust-g/releases/download/$RUST_G_VERSION/librust_g.so" wget -O ~/.byond/bin/librust_g.so "https://github.com/tgstation/rust-g/releases/download/$RUST_G_VERSION/librust_g.so"
wget -O ~/.byond/bin/libauxmos.so "https://github.com/Putnam3145/auxmos/releases/download/$AUXMOS_VERSION/libauxmos.so" wget -O libauxmos.so "https://github.com/Putnam3145/auxmos/releases/download/$AUXMOS_VERSION/libauxmos.so"
chmod +x ~/.byond/bin/librust_g.so chmod +x ~/.byond/bin/librust_g.so
chmod +x ~/.byond/bin/libauxmos.so
ldd ~/.byond/bin/librust_g.so ldd ~/.byond/bin/librust_g.so
ldd ~/.byond/bin/libauxmos.so

View File

@@ -7,6 +7,11 @@ mkdir ci_test/config
#test config #test config
cp tools/ci/ci_config.txt ci_test/config/config.txt cp tools/ci/ci_config.txt ci_test/config/config.txt
#throw auxmos into ldd
cp libauxmos.so ~/.byond/bin/libauxmos.so
chmod +x ~/.byond/bin/libauxmos.so
ldd ~/.byond/bin/libauxmos.so
cd ci_test cd ci_test
DreamDaemon tgstation.dmb -close -trusted -verbose -params "log-directory=ci" DreamDaemon tgstation.dmb -close -trusted -verbose -params "log-directory=ci"
cd .. cd ..