Skip to content

Commit

Permalink
Merge pull request #174 from neon-bindings/appveyor
Browse files Browse the repository at this point in the history
Appveyor
  • Loading branch information
Dave Herman authored Jan 30, 2017
2 parents 0414b93 + dc1039f commit fc0c449
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
os: Visual Studio 2015

platform:
- x64
- x86

environment:
NODEJS_VERSION: "6"
matrix:
- NODE_ARCHITECTURE: x64
RUST_TOOLCHAIN: stable-x86_64-pc-windows-msvc

- NODE_ARCHITECTURE: x86
RUST_TOOLCHAIN: stable-i686-pc-windows-msvc

install:
- ps: Install-Product node $env:NODEJS_VERSION $env:NODE_ARCHITECTURE
- node -e "console.log(process.arch, process.versions)"

- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init.exe -y --default-toolchain %RUST_TOOLCHAIN%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustup show
- rustc -V
- cargo -V

build: false

test_script:
- cd tests
- npm test

cache:
- target
- C:\Users\appveyor\.cargo\registry

0 comments on commit fc0c449

Please sign in to comment.