diff options
author | Joas Schilling <coding@schilljs.com> | 2023-10-27 08:01:34 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-01-26 13:53:32 +0100 |
commit | cc4e2f9e38d00a48913e7f8c226f65fcca56f71e (patch) | |
tree | f1ca0604e532f2f9439419829fbfaa5a55a3a2da /build/integration | |
parent | e7aff760c2c20b702d558c696c865ab45915f69f (diff) | |
download | nextcloud-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-x | build/integration/run.sh | 8 |
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 |