mirror of https://github.com/vector-im/riot-web
Refactor travis-ci to use parallel jobs
parent
5fb6da886c
commit
ab468b5346
21
.travis.yml
21
.travis.yml
|
@ -15,7 +15,24 @@ addons:
|
|||
chrome: stable
|
||||
install:
|
||||
- npm install
|
||||
# install synapse prerequisites for end to end tests
|
||||
- sudo apt-get install build-essential python2.7-dev libffi-dev python-pip python-setuptools sqlite3 libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
|
||||
- ./scripts/travis/install-deps.sh
|
||||
script:
|
||||
./scripts/travis.sh
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- name: Linting Checks
|
||||
script:
|
||||
# run the linter, but exclude any files known to have errors or warnings.
|
||||
- npm run lintwithexclusions
|
||||
- name: End-to-End Tests
|
||||
install:
|
||||
- npm install
|
||||
- ./scripts/travis/install-deps.sh
|
||||
- sudo apt-get install build-essential python2.7-dev libffi-dev python-pip python-setuptools sqlite3 libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
|
||||
script:
|
||||
- ./scripts/travis/test-riot.sh
|
||||
- name: Unit Tests
|
||||
script:
|
||||
- npm run test
|
||||
|
||||
|
|
|
@ -9,9 +9,3 @@ ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
|
|||
cd matrix-js-sdk
|
||||
npm install
|
||||
cd ..
|
||||
|
||||
npm run test
|
||||
./.travis-test-riot.sh
|
||||
|
||||
# run the linter, but exclude any files known to have errors or warnings.
|
||||
npm run lintwithexclusions
|
Loading…
Reference in New Issue