circleci - use .gz for build artifact.

This commit is contained in:
John MacFarlane 2019-01-25 09:43:09 -08:00
parent ecccb69ec7
commit f28d39efae

View file

@ -111,10 +111,10 @@ jobs:
stack update stack update
stack test --system-ghc --ghc-options="${GHC_OPTS} -Werror" . stack test --system-ghc --ghc-options="${GHC_OPTS} -Werror" .
stack install --system-ghc --ghc-options="${GHC_OPTS}" --local-bin-path /tmp/artifacts stack install --system-ghc --ghc-options="${GHC_OPTS}" --local-bin-path /tmp/artifacts
gzip /tmp/artifacts/pandoc
- *save - *save
- store_artifacts: - store_artifacts:
path: /tmp/artifacts/pandoc path: /tmp/artifacts/pandoc.gz
destination: pandoc-${CIRCLE_SHA1}
workflows: workflows:
version: "2.1" version: "2.1"