Tune the AppVeyor config some more (#1214)

* Try to cache the extra-deps from stack-lts-6.yaml

* Limit `stack bench` to the dhall package

For some reason `stack bench` triggers a rebuild of _all_ the local
packages, which we don't need.
This commit is contained in:
Simon Jakobi 2019-08-08 14:08:25 +02:00 committed by mergify[bot]
parent 97f0ff8552
commit a2118eaeee

View File

@ -25,6 +25,9 @@ install:
cache:
- '%STACK_ROOT% -> %STACK_YAML%, appveyor.yml'
- '.stack-work -> %STACK_YAML%, appveyor.yml'
- 'dhall/.stack-work -> %STACK_YAML%, appveyor.yml'
- 'dhall-bash/.stack-work -> %STACK_YAML%, appveyor.yml'
for:
-
@ -51,7 +54,7 @@ for:
- stack test dhall-json
- stack test dhall-bash
# - stack test dhall-lsp-server # Disabled while the tests are broken.
- stack bench --benchmark-arguments "--quick --min-duration=0 --include-first-iter"
- stack bench dhall --benchmark-arguments "--quick --min-duration=0 --include-first-iter"
-
matrix: