Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
21e063a9
Commit
21e063a9
authored
9 years ago
by
Thomas Müller
Browse files
Options
Downloads
Patches
Plain Diff
tail the server log and exit with the exit code of behat
parent
8a1e6c0a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/integration/run.sh
+7
-2
7 additions, 2 deletions
build/integration/run.sh
with
7 additions
and
2 deletions
build/integration/run.sh
+
7
−
2
View file @
21e063a9
...
@@ -2,12 +2,11 @@
...
@@ -2,12 +2,11 @@
composer
install
composer
install
#
TODO:
avoid port collision on jenkins - use $EXECUTOR_NUMBER
# avoid port collision on jenkins - use $EXECUTOR_NUMBER
if
[
-z
"
$EXECUTOR_NUMBER
"
]
;
then
if
[
-z
"
$EXECUTOR_NUMBER
"
]
;
then
EXECUTOR_NUMBER
=
0
EXECUTOR_NUMBER
=
0
fi
fi
PORT
=
$((
8080
+
$EXECUTOR_NUMBER
))
PORT
=
$((
8080
+
$EXECUTOR_NUMBER
))
#PORT=8080
echo
$PORT
echo
$PORT
php
-S
localhost:
$PORT
-t
../.. &
php
-S
localhost:
$PORT
-t
../.. &
PHPPID
=
$!
PHPPID
=
$!
...
@@ -23,6 +22,12 @@ export TEST_SERVER_URL="http://localhost:$PORT/ocs/"
...
@@ -23,6 +22,12 @@ export TEST_SERVER_URL="http://localhost:$PORT/ocs/"
export
TEST_SERVER_FED_URL
=
"http://localhost:
$PORT_FED
/ocs/"
export
TEST_SERVER_FED_URL
=
"http://localhost:
$PORT_FED
/ocs/"
vendor/bin/behat
-f
junit
-f
pretty
vendor/bin/behat
-f
junit
-f
pretty
RESULT
=
$?
kill
$PHPPID
kill
$PHPPID
kill
$PHPPID_FED
kill
$PHPPID_FED
tail
"../../data/owncloud.log"
exit
$RESULT
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment