mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-23 07:07:09 -05:00
* Try using runtests-parallel for CI * Put worker count setting into .travis.yml * Reduce worker count to 4 - 8 wasnt much different from 4-6 but had contention issues causing timeouts
35 lines
398 B
YAML
35 lines
398 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- 'stable'
|
|
- '4'
|
|
- '0.10'
|
|
|
|
sudo: false
|
|
|
|
env:
|
|
- workerCount=4
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- os: osx
|
|
node_js: stable
|
|
osx_image: xcode7.3
|
|
env: workerCount=2
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- transforms
|
|
|
|
install:
|
|
- npm uninstall typescript
|
|
- npm uninstall tslint
|
|
- npm install
|
|
- npm update
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|