Skip to content

Commit

Permalink
Add an appveyor.yml script
Browse files Browse the repository at this point in the history
  • Loading branch information
pepeiborra committed Sep 11, 2017
1 parent ad5b449 commit 6422f0a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

cache:
- "c:\\sr" # stack root, short paths == less problems

build: off

clone_folder: "c:\\project"
environment:
global:
STACK_ROOT: "c:\\sr"
VSVER: 14

install:
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH% # for curl
- curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
- 7z x stack.zip stack.exe
- stack setup > nul

test_script:
- stack --resolver lts-9.4 --no-system-ghc --install-ghc --jobs 1 test
- stack --resolver lts-7.24 --no-system-ghc --install-ghc --jobs 1 test
- stack --resolver lts-6.35 --no-system-ghc --install-ghc --jobs 1 test
- stack --resolver lts-2.22 --no-system-ghc --install-ghc --jobs 1 test
- stack --resolver nightly-2017-09-10 --no-system-ghc --install-ghc --jobs 1 test

0 comments on commit 6422f0a

Please sign in to comment.