Skip to content
This repository was archived by the owner on Jul 25, 2022. It is now read-only.

Commit bd53cd3

Browse files
committed
Add appveyor.yml
1 parent cf697e5 commit bd53cd3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

appveyor.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Disable standard build process with MSBuild
2+
build: off
3+
4+
# In case of unreliable builds try disabling caching.
5+
cache:
6+
- "c:\\sr"
7+
8+
before_test:
9+
- curl -sS -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
10+
- 7z x stack.zip stack.exe
11+
12+
clone_folder: "c:\\stack"
13+
environment:
14+
global:
15+
STACK_ROOT: "c:\\sr"
16+
17+
test_script:
18+
- stack setup > nul
19+
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file
20+
# descriptor
21+
- echo "" | stack --no-terminal build

0 commit comments

Comments
 (0)