rump-images
Version:
Rump piece for handling images
29 lines (24 loc) • 684 B
YAML
version: "{build}"
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "3"
install:
- appveyor DownloadFile http://downloads.sourceforge.net/graphicsmagick/GraphicsMagick-1.3.20-Q8-win32-dll.exe
- GraphicsMagick-1.3.20-Q8-win32-dll.exe /SP /VERYSILENT /NORESTART /NOICONS /DIR=%CD%\gm
- set PATH=%CD%\gm;%PATH%
- ps: Install-Product node $env:nodejs_version
- ps: >-
if($env:nodejs_version -eq "0.10")
{
npm install -g npm@next
$env:Path = "${env:Appdata}\npm;${env:Path}"
}
- npm install
- node --version
- npm --version
test_script:
- npm test
- npm run codecov
build: off