Skip to content

Commit 738bc42

Browse files
authored
Merge pull request #1544 from haskell/appveyor-less-verbose
Appveyor less verbose
2 parents 11d6abf + f6bb6be commit 738bc42

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

appveyor.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ environment:
99
- emacs: 25
1010

1111
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
12+
- ps: switch($env:emacs){ 24 {choco install emacs --no-progress} 25 {choco install emacs64 --no-progress} default {throw "Emacs install fail"}}
13+
- choco install ghc --no-progress
14+
- choco install haskell-stack --no-progress
1515
- refreshenv
1616

1717
build_script:
18+
- C:\msys64\usr\bin\bash -l -c "cd ${APPVEYOR_BUILD_FOLDER} && make"
19+
20+
test_script:
1821
- C:\msys64\usr\bin\bash -l -c "cd ${APPVEYOR_BUILD_FOLDER} && make check"

0 commit comments

Comments
 (0)