Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ jobs:
- run: git remote add upstream https://github.com/Courseography/courseography.git
- run: git fetch upstream

- restore_cache:
name: Restore Cached Dependencies (Haskell)
keys:
- v1.4-courseography-haskell-{{ checksum "courseography.cabal" }}-{{ checksum "stack.yaml.lock" }}
- v1.4-courseography-haskell-{{ checksum "courseography.cabal" }}
- v1.4-courseography-haskell-{{ checksum "stack.yaml.lock" }}
- v1.4-courseography-haskell-

- run:
name: Install Package Dependencies
command: |
Expand All @@ -50,7 +42,7 @@ jobs:
command: |
stack --no-terminal setup
rm -fr $(stack path --dist-dir) $(stack path --local-install-root)
stack --no-terminal build --fast -j4 --ghc-options -Werror
stack --no-terminal build --fast -j1 --ghc-options -Werror
stack build hlint
stack build hpc-lcov
yarn install
Expand Down