mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
parent
9f4426a462
commit
36af23ff5a
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user