We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11d6abf + f6bb6be commit 738bc42Copy full SHA for 738bc42
appveyor.yml
@@ -9,10 +9,13 @@ environment:
9
- emacs: 25
10
11
install:
12
- - ps: switch($env:emacs){ 24 {choco install emacs} 25 {choco install emacs64} default {throw "Emacs install fail"}}
13
- - choco install ghc
14
- - choco install haskell-stack
+ - ps: switch($env:emacs){ 24 {choco install emacs --no-progress} 25 {choco install emacs64 --no-progress} default {throw "Emacs install fail"}}
+ - choco install ghc --no-progress
+ - choco install haskell-stack --no-progress
15
- refreshenv
16
17
build_script:
18
+ - C:\msys64\usr\bin\bash -l -c "cd ${APPVEYOR_BUILD_FOLDER} && make"
19
+
20
+test_script:
21
- C:\msys64\usr\bin\bash -l -c "cd ${APPVEYOR_BUILD_FOLDER} && make check"
0 commit comments