Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
ae175910dd
2 changed files with 6 additions and 3 deletions
|
@ -30,7 +30,7 @@ popd
|
|||
if [ "$TRAVIS_BRANCH" = "develop" ]
|
||||
then
|
||||
# run end to end tests
|
||||
git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch master
|
||||
scripts/fetchdep.sh matrix-org matrix-react-end-to-end-tests master
|
||||
pushd matrix-react-end-to-end-tests
|
||||
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
|
||||
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
||||
|
|
|
@ -4,6 +4,9 @@ set -e
|
|||
|
||||
org="$1"
|
||||
repo="$2"
|
||||
defbranch="$3"
|
||||
|
||||
[ -z "$defbranch" ] && defbranch="develop"
|
||||
|
||||
rm -r "$repo" || true
|
||||
|
||||
|
@ -18,5 +21,5 @@ then
|
|||
git clone https://github.com/$org/$repo.git $repo --branch "$curbranch" && exit 0
|
||||
fi
|
||||
|
||||
echo "Checking out develop branch"
|
||||
git clone https://github.com/$org/$repo.git $repo --branch develop
|
||||
echo "Checking out default branch $defbranch"
|
||||
git clone https://github.com/$org/$repo.git $repo --branch $defbranch
|
||||
|
|
Loading…
Reference in a new issue