diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index 05ac670de5c0..4a3fb5e490fc 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -18,7 +18,6 @@ jobs: image: mysql:latest env: MYSQL_ROOT_PASSWORD: root - LD_DEBUG: all ports: - 3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 @@ -72,6 +71,5 @@ jobs: - name: Run Tests run: | - ldd libauxmos.so source $HOME/BYOND/byond/bin/byondsetup bash tools/ci/run_server.sh diff --git a/tools/ci/run_server.sh b/tools/ci/run_server.sh index b288c4a4fa4e..a5940f8b3d38 100644 --- a/tools/ci/run_server.sh +++ b/tools/ci/run_server.sh @@ -9,7 +9,7 @@ mkdir ci_test/config cp tools/ci/ci_config.txt ci_test/config/config.txt cd ci_test -DreamDaemon shiptest.dmb -close -trusted -verbose -params "log-directory=ci" || EXIT_CODE=$? +env LD_DEBUG=all DreamDaemon shiptest.dmb -close -trusted -verbose -params "log-directory=ci" || EXIT_CODE=$? cd .. cat ci_test/data/logs/ci/clean_run.lk