mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 10:00:33 -04:00
Reduce the output on github CI
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
e7aff760c2
commit
cc4e2f9e38
2 changed files with 9 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -129,6 +129,8 @@ nbproject
|
|||
/build/bin
|
||||
/build/lib/
|
||||
/build/jsdocs/
|
||||
/build/integration/output/
|
||||
/build/integration/phpserver.log
|
||||
/npm-debug.log
|
||||
/PhantomJS_*
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue