Skip to content

Commit

Permalink
caching flutter folder didn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
comigor committed Oct 7, 2018
1 parent 2a55a2d commit ac69f05
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
- .packages
- .dart_tool
- ~/.pub-cache
- ~/sdks/flutter
key: v1-pubcache-{{ checksum "pubspec.yaml" }}

test:
Expand All @@ -34,6 +33,12 @@ jobs:
- checkout
- restore_cache:
key: v1-pubcache-{{ checksum "pubspec.yaml" }}
- run:
name: Change flutter channel to dev
command: flutter channel dev
- run:
name: Up(down)grade Flutter
command: ( cd ~/sdks/flutter; git checkout 3581b3ae85d30c5677445e0072c81d1f32280270; cd -; )
- run:
name: Lint
command: bash -c '[[ "$(dartfmt -n . | wc -l)" -eq "0" ]]'
Expand Down

0 comments on commit ac69f05

Please sign in to comment.