We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f292ed5 commit e603a48Copy full SHA for e603a48
.circleci/config.yml
@@ -15,7 +15,12 @@ jobs:
15
- image: 'fpco/stack-build:latest'
16
17
steps:
18
- - checkout
+ # 'checkout' command is currently broken because the Docker image stopped
19
+ # providing 'ssh'. We do a manual checkout instead.
20
+ # - checkout
21
+ - run:
22
+ name: 'Checkout'
23
+ command: 'git clone https://github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME.git .'
24
- restore_cache:
25
key: 'v2-stylish-haskell-{{ arch }}-{{ .Branch }}'
26
- run:
0 commit comments