Skip to content

Commit

Permalink
Update CI configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Mar 18, 2016
1 parent cb10837 commit 638daca
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ node_js:
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
34 changes: 24 additions & 10 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,44 @@
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
# http://www.appveyor.com/docs/appveyor-yml

clone_depth: 10

version: "{build}"

# What combinations to test
environment:
matrix:
- nodejs_version: "0.10"
platform: x86
- nodejs_version: "0.12"
platform: x86
- nodejs_version: "4"
platform: x64
- nodejs_version: "4"
platform: x86
- nodejs_version: "5"
platform:
- x86
- x64
platform: x86

install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm install -g grunt-cli
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@3
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install

test_script:
# Output useful info for debugging.
# Output useful info for debugging
- node --version && npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test

build: off

matrix:
fast_finish: true

cache:
- node_modules -> package.json

0 comments on commit 638daca

Please sign in to comment.