appveyor: try older ghc again, skip tests for now (#888)

[ci skip]
This commit is contained in:
Simon Michael 2018-10-07 10:07:31 -10:00
parent 9f4426a462
commit 36af23ff5a
2 changed files with 12 additions and 6 deletions

View File

@ -69,12 +69,12 @@ install:
#
# install ghc
#- stack setup
# use ghc 8.2 to avoid a hledger-web -> network/stack build issue on windows,
# network 2.7.0.1 should work around it when released
# use ghc 8.2 to avoid hledger-web -> network/stack/ghc/windows build issue
# https://github.com/haskell/network/issues/313
# https://github.com/commercialhaskell/stack/issues/3944
#- stack --stack-yaml=stack-ghc8.2.yaml setup
- stack setup
# network 2.7.0.1 is supposed to work around it
- stack setup --stack-yaml=stack-ghc8.2.yaml
#- stack setup
#- set PATH=C:\Users\appveyor\AppData\Roaming\local\bin;%PATH%
#- stack install shelltestrunner
@ -83,9 +83,11 @@ install:
# hledger-ui's vty dep isn't available on windows
# hledger-api not tried recently
build_script:
#- stack build --test --copy-bins --local-bin-path=. hledger hledger-web
# use network 2.7.0.1+ to avoid https://github.com/haskell/network/issues/313
- stack build --test --copy-bins --local-bin-path=. hledger hledger-web network-2.7.0.2
#- stack build --test --copy-bins --local-bin-path=. hledger hledger-web network-2.7.0.2
# use ghc 8.2 to avoid hledger-web -> network/stack/ghc/windows build issue
# don't run test suites to avoid easytest/windows utf8 issue
- stack build --copy-bins --local-bin-path=. hledger hledger-web --stack-yaml=stack-ghc8.2.yaml
- 7z a -tzip hledger.zip hledger.exe hledger-web.exe
#- hledger-install/hledger-install.sh

View File

@ -244,6 +244,10 @@ FLAGS
testcmd :: CliOpts -> Journal -> IO ()
testcmd opts _undefined = do
let args = words' $ query_ $ reportopts_ opts
-- workaround for https://github.com/joelburget/easytest/issues/11
-- import System.IO (hSetEncoding, stdout, stderr, utf8)
-- hSetEncoding stdout utf8
-- hSetEncoding stderr utf8
e <- runEasytests args $ EasyTest.tests [tests_Hledger, tests_Commands]
if e then exitFailure else exitSuccess