CircleCI: fix stack installation.

homebrew no longer has a bottle for haskell-stack for the
old macOS version we're building on.
This commit is contained in:
John MacFarlane 2020-12-29 15:31:29 -08:00
parent 886faa3cbc
commit dcbd8d326c

View file

@ -14,7 +14,7 @@ jobs:
- stack-dependencies-{{ checksum "stack.yaml" }} - stack-dependencies-{{ checksum "stack.yaml" }}
- run: - run:
name: Install stack name: Install stack
command: stack --version || brew update && brew install haskell-stack command: stack --version || (curl -sSL https://get.haskellstack.org/ | sh -s - -f)
- run: - run:
name: Resolve/Update Dependencies name: Resolve/Update Dependencies
command: stack --no-terminal setup command: stack --no-terminal setup