Skip to content

Commit

Permalink
Merge pull request #54 from mariuz/master
Browse files Browse the repository at this point in the history
add appveyor windows builds status badges
  • Loading branch information
xdenser committed Mar 2, 2015
2 parents 78ac98b + 45d43e5 commit 0c50e13
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -4,6 +4,10 @@ C++ NodeJS module to work with Firebird SQL Server. Uses fbclient library and wi

[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![Mozilla License][license-image]][license-url]
[![Build Status](https://travis-ci.org/mariuz/node-firebird-libfbclient.svg?branch=master)](https://travis-ci.org/mariuz/node-firebird-libfbclient)
[![Build status](https://ci.appveyor.com/api/projects/status/53qual24r2f089ni?svg=true)](https://ci.appveyor.com/project/mariuz/node-firebird-libfbclient)

[![NPM](https://nodei.co/npm/firebird.png?downloads=true&downloadRank=true)](https://nodei.co/npm/firebird/) [![NPM](https://nodei.co/npm-dl/firebird.png?months=6&height=3)](https://nodei.co/npm/firebird/)


# Features

Expand Down
35 changes: 35 additions & 0 deletions appveyor.yml
@@ -0,0 +1,35 @@
# http://www.appveyor.com/docs/appveyor-yml

# Test against these versions of Io.js and Node.js.
environment:
matrix:
# node.js
- nodejs_version: "0.12"
# io.js
- nodejs_version: "1"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: if($env:nodejs_version -ne "0.8") {Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)}
- IF NOT %nodejs_version% == 1 npm -g install npm
- IF NOT %nodejs_version% == 1 set PATH=%APPDATA%\npm;%PATH%
# Typical npm stuff.
- npm install
#- IF %nodejs_version% == 0.8 node node_modules\node-gyp\bin\node-gyp.js rebuild --directory test
#- IF NOT %nodejs_version% == 0.8 npm run rebuild-tests

# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
#- IF NOT %nodejs_version% == 1 npm test
#- IF %nodejs_version% == 1 iojs node_modules\tap\bin\tap.js --gc test\js\*-test.js

# Don't actually build.
build: off

# Set build version format here instead of in the admin panel.
version: "{build}"

0 comments on commit 0c50e13

Please sign in to comment.