You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-08-07 21:23:00 +03:00
Ensure we install the master branch of the e2e tests as a default
This commit is contained in:
@@ -30,7 +30,7 @@ popd
|
||||
if [ "$TRAVIS_BRANCH" = "develop" ]
|
||||
then
|
||||
# run end to end tests
|
||||
scripts/fetchdep.sh matrix-org matrix-react-end-to-end-tests
|
||||
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
|
||||
|
||||
@@ -19,4 +22,4 @@ then
|
||||
fi
|
||||
|
||||
echo "Checking out develop branch"
|
||||
git clone https://github.com/$org/$repo.git $repo --branch develop
|
||||
git clone https://github.com/$org/$repo.git $repo --branch $defbranch
|
||||
|
Reference in New Issue
Block a user