1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Refactor travis-ci to use parallel jobs

This commit is contained in:
Erik Johnston
2019-01-08 11:21:19 +00:00
parent 5fb6da886c
commit ab468b5346
3 changed files with 19 additions and 8 deletions

11
scripts/travis/install-deps.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -ex
scripts/fetchdep.sh matrix-org matrix-js-sdk
rm -r node_modules/matrix-js-sdk || true
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
cd matrix-js-sdk
npm install
cd ..