mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-08 15:03:22 +01:00
841f56fe83
* Migrates from Travis CI To Actions First hitch Surprise surprise NanoUI is the issue ... Please work Final Commit * Undoes an oops
15 lines
316 B
Bash
Executable File
15 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
cp config/example/* config/
|
|
|
|
#Apply test DB config for SQL connectivity
|
|
rm config/dbconfig.txt
|
|
cp tools/ci/dbconfig.txt config
|
|
|
|
# Now run the server and the unit tests
|
|
DreamDaemon paradise.dmb -close -trusted -verbose
|
|
|
|
# Check if the unit tests actually suceeded
|
|
cat data/clean_run.lk
|