From e8c09abb8b57a6edcb35b9b4bf29cde1cbc5b0c8 Mon Sep 17 00:00:00 2001 From: Chris Talkington Date: Fri, 5 Jun 2015 19:55:29 -0500 Subject: [PATCH] appveyor --- README.md | 2 +- appveyor.yml | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/README.md b/README.md index f1891beb..74b9544c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Archiver v0.15.0-1 [![Build Status](https://travis-ci.org/archiverjs/node-archiver.svg?branch=master)](https://travis-ci.org/archiverjs/node-archiver) +# Archiver v0.15.0-1 [![Build Status](https://travis-ci.org/archiverjs/node-archiver.svg?branch=master)](https://travis-ci.org/archiverjs/node-archiver) [![Build status](https://ci.appveyor.com/api/projects/status/38kqu3yp159nodxe/branch/master?svg=true)](https://ci.appveyor.com/project/ctalkington/node-archiver/branch/master) a streaming interface for archive generation diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..7dce6ba5 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +init: + - git config --global core.autocrlf input +environment: + matrix: + - nodejs_version: '1' # iojs + - nodejs_version: '0.12' + - nodejs_version: '0.10' +install: + - ps: Install-Product node $env:nodejs_version + - set CI=true + - npm -g install npm@latest + - set PATH=%APPDATA%\npm;%PATH% + - npm install +matrix: + fast_finish: true +build: off +version: '{build}' +shallow_clone: true +clone_depth: 1 +test_script: + - node --version + - npm --version + - npm test \ No newline at end of file