aboutsummaryrefslogtreecommitdiffstats
path: root/build/integration
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-10-27 08:01:34 +0200
committerJoas Schilling <coding@schilljs.com>2024-01-26 13:53:32 +0100
commitcc4e2f9e38d00a48913e7f8c226f65fcca56f71e (patch)
treef1ca0604e532f2f9439419829fbfaa5a55a3a2da /build/integration
parente7aff760c2c20b702d558c696c865ab45915f69f (diff)
downloadnextcloud-server-cc4e2f9e38d00a48913e7f8c226f65fcca56f71e.tar.gz
nextcloud-server-cc4e2f9e38d00a48913e7f8c226f65fcca56f71e.zip
Reduce the output on github CI
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'build/integration')
-rwxr-xr-xbuild/integration/run.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index 45a0333038e..09c1d544c6d 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -34,10 +34,16 @@ if [ -z "$EXECUTOR_NUMBER" ]; then
fi
PORT=$((8080 + $EXECUTOR_NUMBER))
echo $PORT
-php -S localhost:$PORT -t ../.. &
+
+echo "" > phpserver.log
+
+php -S localhost:$PORT -t ../.. &> phpserver.log &
PHPPID=$!
echo $PHPPID
+# Output filtered php server logs
+tail -f phpserver.log | grep --line-buffered -v -E ":[0-9]+ Accepted$" | grep --line-buffered -v -E ":[0-9]+ Closing$" &
+
# The federated server is started and stopped by the tests themselves
PORT_FED=$((8180 + $EXECUTOR_NUMBER))
echo $PORT_FED