Skip to content

Commit

Permalink
Add appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbrunsfeld committed Oct 24, 2016
1 parent 25c18e2 commit 5c266ee
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
environment:
nodejs_version: "6"

install:
# Install node
- ps: Install-Product node $env:nodejs_version

# Install Rust
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-host %TARGET%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V

build: false

test_script:
- cd tests
- npm test

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

0 comments on commit 5c266ee

Please sign in to comment.