forked from haskell-tools/haskell-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
25 lines (20 loc) · 871 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
build: off
cache:
- "c:\\sr" # stack root, short paths == fewer problems
before_test:
# http://help.appveyor.com/discussions/problems/6312-curl-command-not-found
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
- curl -sS -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
- 7z x stack.zip stack.exe
clone_folder: "c:\\stack"
environment:
global:
STACK_ROOT: "c:\\sr"
test_script:
- echo "" | stack --no-terminal --install-ghc install --test --no-run-tests > nul
- echo "" | stack --no-terminal test haskell-tools-rewrite
- echo "" | stack --no-terminal test haskell-tools-builtin-refactorings
- echo "" | stack --no-terminal test haskell-tools-experimental-refactorings
- echo "" | stack --no-terminal test haskell-tools-cli
- echo "" | stack --no-terminal test haskell-tools-daemon
- echo "" | stack --no-terminal test haskell-tools-demo