Index: build/build.sh =================================================================== diff -u -r46a7ac851fa42814068c93e02f89e179c129f583 -r34aeccdd129afdcb860560ead152aed5901bd363 --- build/build.sh (.../build.sh) (revision 46a7ac851fa42814068c93e02f89e179c129f583) +++ build/build.sh (.../build.sh) (revision 34aeccdd129afdcb860560ead152aed5901bd363) @@ -9,12 +9,12 @@ POKY_VER=$3 fi -REMOTE_REPO_BASE_ADDRESS="ssh://git@devapps.diality.us:7999/" +REMOTE_REPO_BASE_ADDRESS="git@bitbucket.org:diality-cloud/" # If the support scripts repository does not exist, clone it if [[ ! -d "supportscript" ]] then - git clone "$REMOTE_REPO_BASE_ADDRESS"bl/supportscript.git + git clone "$REMOTE_REPO_BASE_ADDRESS"supportscript.git fi source ./supportscript/supportscript.sh @@ -109,7 +109,7 @@ cd $manualCasesFolder # Clone the application just for checking the manual cases - git clone "$REMOTE_REPO_BASE_ADDRESS"ui/application.git + git clone "$REMOTE_REPO_BASE_ADDRESS"application.git cd application # Declare and associatvie array @@ -206,7 +206,7 @@ fi echo " ------------------------------Setting up the project" -git clone "$REMOTE_REPO_BASE_ADDRESS"bl/setupscript.git +git clone "$REMOTE_REPO_BASE_ADDRESS"setupscript.git ./setupscript/projectsetup.sh "${buildSpecs[$PROJECT_NAME_INDEX]}" "${buildSpecs[$PROJECT_CHECKOUT_INDEX]}" \ "${buildSpecs[$COMMON_CHECKOUT_INDEX]}" cd application @@ -390,7 +390,7 @@ rm -rf "reportscripts" fi -git clone "$REMOTE_REPO_BASE_ADDRESS"bl/reportscripts.git +git clone "$REMOTE_REPO_BASE_ADDRESS"reportscripts.git # If this is a build only build, it is informal and it does not need code review report if [[ ${buildSpecs[$BUILD_ONLY_FLAG_INDEX]} == false ]] Index: build/unittest.sh =================================================================== diff -u -rf8913f2b888013670a2dc50dbde09ccd2d44dd15 -r34aeccdd129afdcb860560ead152aed5901bd363 --- build/unittest.sh (.../unittest.sh) (revision f8913f2b888013670a2dc50dbde09ccd2d44dd15) +++ build/unittest.sh (.../unittest.sh) (revision 34aeccdd129afdcb860560ead152aed5901bd363) @@ -3,7 +3,7 @@ # Local example $./run.unittest.sh :0 5.12.5 /media/sf_VMSHARE PYCOMMON="" # use anything other that "" to use pycommon as SquishQt API lib source # TODO pycommon is not needed right? -REMOTE_REPO_BASE_ADDRESS="ssh://git@devapps.diality.us:7999/" +REMOTE_REPO_BASE_ADDRESS="git@bitbucket.org:diality-cloud/" function readTestsList() { TESTS_LIST=() @@ -128,7 +128,7 @@ echo " ------------------------------ Clone Denali " if [ -z "$RUN_FOR_LOCAL" ]; then - git clone "$REMOTE_REPO_BASE_ADDRESS"bl/setupscript.git + git clone "$REMOTE_REPO_BASE_ADDRESS"setupscript.git ./setupscript/projectsetup.sh ${buildSpecs[$PROJECT_NAME_INDEX]} ${buildSpecs[$PROJECT_CHECKOUT_INDEX]} \ ${buildSpecs[$COMMON_CHECKOUT_INDEX]} else @@ -138,7 +138,7 @@ echo " ------------------------------ Clone the Test Suites" if [ -z "$RUN_FOR_LOCAL" ]; then - git clone "$REMOTE_REPO_BASE_ADDRESS"ui/testsuites.git testsuites + git clone "$REMOTE_REPO_BASE_ADDRESS"testsuites.git testsuites local currentDir=$(pwd) @@ -447,7 +447,7 @@ mkdir "$sonarFolder" cd "$sonarFolder" || return # Clone the application and checkout the branch that is being built - git clone "$REMOTE_REPO_BASE_ADDRESS"bl/setupscript.git + git clone "$REMOTE_REPO_BASE_ADDRESS"setupscript.git ./setupscript/projectsetup.sh "${buildSpecs[$PROJECT_NAME_INDEX]}" "${buildSpecs[$PROJECT_CHECKOUT_INDEX]}" \ "${buildSpecs[$COMMON_CHECKOUT_INDEX]}" cd application || return