mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
15 lines
293 B
Bash
Executable File
15 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
tools/deploy.sh ci_test
|
|
rm ci_test/*.dll
|
|
mkdir ci_test/config
|
|
|
|
#test config
|
|
cp tools/ci/ci_config.txt ci_test/config/config.txt
|
|
|
|
cd ci_test
|
|
DreamDaemon tgstation.dmb -close -trusted -verbose -params "log-directory=ci"
|
|
cd ..
|
|
cat ci_test/data/logs/ci/clean_run.lk
|