aboutsummaryrefslogtreecommitdiff
path: root/.github/scripts/test-no-error-reports.sh
diff options
context:
space:
mode:
authorbombcar <github@bombcar.com>2022-03-02 16:58:05 -0600
committerbombcar <github@bombcar.com>2022-03-02 16:58:05 -0600
commit4408ed89d5ed2d7e3c519dd2033b40c0372414c1 (patch)
treed275125c52f31e5abad3e494038c6f6ca4ec4af9 /.github/scripts/test-no-error-reports.sh
parent495432a979944730cde01bed387ee39910c2d933 (diff)
downloadGT5-Unofficial-4408ed89d5ed2d7e3c519dd2033b40c0372414c1.tar.gz
GT5-Unofficial-4408ed89d5ed2d7e3c519dd2033b40c0372414c1.tar.bz2
GT5-Unofficial-4408ed89d5ed2d7e3c519dd2033b40c0372414c1.zip
build to maven
Diffstat (limited to '.github/scripts/test-no-error-reports.sh')
-rw-r--r--.github/scripts/test-no-error-reports.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/scripts/test-no-error-reports.sh b/.github/scripts/test-no-error-reports.sh
deleted file mode 100644
index e3876606d5..0000000000
--- a/.github/scripts/test-no-error-reports.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-if [[ -d "run/crash-reports" ]]; then
- echo "Crash reports detected:"
- cat $directory/*
- exit 1
-fi
-
-if grep --quiet "Fatal errors were detected" server.log; then
- echo "Fatal errors detected:"
- cat server.log
- exit 1
-fi
-
-if grep --quiet "The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED" server.log; then
- echo "Server force stopped:"
- cat server.log
- exit 1
-fi
-
-if grep --quiet 'Done .+ For help, type "help" or "?"' server.log; then
- echo "Server didn't finish startup:"
- cat server.log
- exit 1
-fi
-
-echo "No crash reports detected"
-exit 0
-