Skip to content
Snippets Groups Projects
Unverified Commit de61c7d3 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

acceptence tests shall specify which branch to pick when cloning apps

parent 2147c39c
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,7 @@ if [ "$1" = "--acceptance-tests-dir" ]; then ...@@ -64,6 +64,7 @@ if [ "$1" = "--acceptance-tests-dir" ]; then
fi fi
ACCEPTANCE_TESTS_CONFIG_DIR="../../$ACCEPTANCE_TESTS_DIR/config" ACCEPTANCE_TESTS_CONFIG_DIR="../../$ACCEPTANCE_TESTS_DIR/config"
DEV_BRANCH="master"
# "--timeout-multiplier N" option can be provided to set the timeout multiplier # "--timeout-multiplier N" option can be provided to set the timeout multiplier
# to be used in ActorContext. # to be used in ActorContext.
...@@ -195,7 +196,7 @@ ln --symbolic $(pwd) /var/www/html ...@@ -195,7 +196,7 @@ ln --symbolic $(pwd) /var/www/html
# Add Notifications app to the "apps" directory (unless it is already there). # Add Notifications app to the "apps" directory (unless it is already there).
if [ ! -e "apps/notifications" ]; then if [ ! -e "apps/notifications" ]; then
(cd apps && git clone --depth 1 https://github.com/nextcloud/notifications) (cd apps && git clone --depth 1 --branch ${DEV_BRANCH} https://github.com/nextcloud/notifications)
fi fi
INSTALL_AND_CONFIGURE_SERVER_PARAMETERS="" INSTALL_AND_CONFIGURE_SERVER_PARAMETERS=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment