[commit: packages/process] less-cpp,master: appveyor.yml (3b3ba4b)
git at git.haskell.org
git at git.haskell.org
Tue Dec 15 13:34:22 UTC 2015
Repository : ssh://git@git.haskell.org/process
On branches: less-cpp,master
Link : http://ghc.haskell.org/trac/ghc/changeset/3b3ba4b827060117324ab233a950e48eba3b45e5/process
>---------------------------------------------------------------
commit 3b3ba4b827060117324ab233a950e48eba3b45e5
Author: Michael Snoyman <michael at snoyman.com>
Date: Mon Nov 2 08:12:53 2015 -0800
appveyor.yml
>---------------------------------------------------------------
3b3ba4b827060117324ab233a950e48eba3b45e5
appveyor.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..671e09b
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,19 @@
+cache:
+- "c:\\sr" # stack root, short paths == less problems
+
+build: off
+
+before_test:
+- curl -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:
+- stack setup > nul
+# The ugly echo "" hack is to avoid complaints about 0 being an invalid file
+# descriptor
+- echo "" | stack --no-terminal test --pedantic
More information about the ghc-commits
mailing list