Welcome to mirror list, hosted at ThFree Co, Russian Federation.

run.sh « integration « build - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baf31b411c4feed38c41436b0e6bd97b63d21ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

composer install

# TODO: avoid port collision on jenkins - use $EXECUTOR_NUMBER
#if [ -z "$EXECUTOR_NUMBER" ]; then
#    EXECUTOR_NUMBER=0
#fi
#PORT=$((8080 + $EXECUTOR_NUMBER))
PORT=8080
echo $PORT
php -S localhost:$PORT -t ../.. &
PHPPID=$!
echo $PHPPID

#export BEHAT_PARAMS="context[parameters][base_url]=http://localhost:$PORT/ocs"
vendor/bin/behat

kill $PHPPID