-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Appveyor configuration file for Windows CI.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
build: off | ||
|
||
before_test: | ||
# http://help.appveyor.com/discussions/problems/6312-curl-command-not-found | ||
- set PATH=C:\Program Files\Git\mingw64\bin;C:\Qt\5.10.1\mingw53_32\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 resolver: lts-11.1 >stack.yaml' | ||
- 'echo packages: >>stack.yaml' | ||
- 'echo - . >>stack.yaml' | ||
- stack setup > nul | ||
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file | ||
# descriptor | ||
- echo "" | stack --no-terminal test --jobs 1 |