diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-25 09:24:29 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-25 09:24:29 -0800 |
commit | ecccb69ec70b5453936cee106940dbec66daaae0 (patch) | |
tree | f64a67a1ec34976cef1348b4ddf7af8c820c7717 /.circleci | |
parent | 062a8fb10bf3eb7b92d3b8b942f106293ef24902 (diff) | |
download | pandoc-ecccb69ec70b5453936cee106940dbec66daaae0.tar.gz |
CircleCI - store artifact from stack build.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b185ffeb..02648a63d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -110,7 +110,11 @@ jobs: apt-get install -y ghc-8.6.3 stack update stack test --system-ghc --ghc-options="${GHC_OPTS} -Werror" . + stack install --system-ghc --ghc-options="${GHC_OPTS}" --local-bin-path /tmp/artifacts - *save + - store_artifacts: + path: /tmp/artifacts/pandoc + destination: pandoc-${CIRCLE_SHA1} workflows: version: "2.1" |