diff --git a/.circleci/config.yml b/.circleci/config.yml index c63a062..ec69dc9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,24 +13,32 @@ workflows: executor: haskell/ghc-8_2_2 context: haskell-ci binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"} + cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+ + cabal-test-extra: --test-show-details=direct - haskell/build-with-binary-cache: name: GHC 8.4.4 executor: haskell/ghc-8_4_4 context: haskell-ci binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"} + cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+ + cabal-test-extra: --test-show-details=direct - haskell/build-with-binary-cache: name: GHC 8.6.5 executor: haskell/ghc-8_6_5 context: haskell-ci binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"} + cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+ + cabal-test-extra: --test-show-details=direct - haskell/build-with-binary-cache: name: GHC 8.8.1 executor: haskell/ghc-8_8_1 context: haskell-ci binary-cache-uri: ${BINARY_CACHE_URI-"http://hw-binary-cache-us-west-2-a.s3-website-us-west-2.amazonaws.com/archive"} + cabal-build-extra: --write-ghc-environment-files=ghc8.4.4+ + cabal-test-extra: --test-show-details=direct - github/release-cabal: name: GitHub Release diff --git a/project.sh b/project.sh index 7020bcc..704558b 100755 --- a/project.sh +++ b/project.sh @@ -26,7 +26,7 @@ case "$cmd" in ;; test) - cabal new-test -j8 --enable-tests --disable-documentation \ + cabal v2-test -j8 --enable-tests --test-show-details=direct \ $CABAL_FLAGS "$@" ;;