-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from haskell-fswatch/appveyor
Appveyor CI matrix
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
[](https://hackage.haskell.org/package/win32-notify) | ||
[](http://stackage.org/nightly/package/win32-notify) | ||
[](https://ci.appveyor.com/project/pepeiborra/win32-notify) | ||
|
||
win32-notify | ||
============ | ||
|
||
File notification interface for Haskell in Windows | ||
File notification interface for Haskell in Windows |
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,27 @@ | ||
|
||
cache: | ||
- "c:\\sr" # stack root, short paths == less problems | ||
|
||
build: off | ||
|
||
clone_folder: "c:\\project" | ||
environment: | ||
global: | ||
STACK_ROOT: "c:\\sr" | ||
VSVER: 14 | ||
matrix: | ||
- RESOLVER: lts-9.4 | ||
- RESOLVER: lts-7.24 | ||
- RESOLVER: lts-6.35 | ||
- RESOLVER: lts-2.22 | ||
- RESOLVER: nightly-2017-09-10 | ||
|
||
|
||
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 %RESOLVER% --no-system-ghc --install-ghc --jobs 1 test |
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,7 @@ | ||
flags: {} | ||
extra-package-dbs: [] | ||
extra-deps: [] | ||
packages: | ||
- . | ||
|
||
resolver: nightly-2017-09-10 |