stops testing multiple versions of node on codeship, added 1.0 branch, and fixed the browsername for chrome on saucelabs
This commit is contained in:
@ -13,11 +13,11 @@ module.exports = {
|
||||
key: slk.key,
|
||||
browsers: [
|
||||
{
|
||||
browserName: 'chrome',
|
||||
platform: 'Windows 8'
|
||||
browserName: 'googlechrome',
|
||||
platform: 'XP'
|
||||
},
|
||||
{
|
||||
browserName: 'chrome',
|
||||
browserName: 'firefox',
|
||||
platform: 'Linux'
|
||||
},
|
||||
{
|
||||
@ -34,14 +34,6 @@ module.exports = {
|
||||
browserName: 'internet explorer',
|
||||
version: '9',
|
||||
platform: 'Windows 7'
|
||||
},
|
||||
{
|
||||
browserName: 'firefox',
|
||||
platform: 'Windows 7'
|
||||
},
|
||||
{
|
||||
browserName: 'firefox',
|
||||
platform: 'Linux'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -7,31 +7,19 @@ source $HERE/_utils.sh
|
||||
|
||||
case $1 in
|
||||
setup)
|
||||
group "installing nvm 0.10"
|
||||
group "installing node 0.10"
|
||||
nvm install 0.10
|
||||
|
||||
group "installing nvm 0.8"
|
||||
nvm install 0.8
|
||||
|
||||
manage_es install master
|
||||
manage_es install 0.90
|
||||
|
||||
npm install
|
||||
npm --quiet install
|
||||
;;
|
||||
run)
|
||||
group "test node 0.8"
|
||||
nvm use 0.8
|
||||
echo "rebuilding npm deps"
|
||||
npm rebuild &> /dev/null
|
||||
call ES_BRANCH=master ./scripts/ci.sh
|
||||
call ES_BRANCH=0.90 ./scripts/ci.sh
|
||||
|
||||
group "test node 0.10"
|
||||
nvm use 0.10
|
||||
echo "rebuilding npm deps"
|
||||
npm rebuild &> /dev/null
|
||||
call ES_BRANCH=master COVERAGE=1 ./scripts/ci.sh
|
||||
call ES_BRANCH=0.90 ./scripts/ci.sh
|
||||
call ES_BRANCH=master NODE_UNIT=0 COVERAGE=1 ./scripts/ci.sh
|
||||
call ES_BRANCH=1.0 NODE_UNIT=0 ./scripts/ci.sh
|
||||
call ES_BRANCH=0.90 NODE_UNIT=0 ./scripts/ci.sh
|
||||
|
||||
group "test browsers"
|
||||
call NODE_UNIT=0 NODE_INTEGRATION=0 BROWSER_UNIT=1 ./scripts/ci.sh
|
||||
|
||||
Reference in New Issue
Block a user