Skip to content

Commit

Permalink
Disable cache for windows
Browse files Browse the repository at this point in the history
Applying workaround for problem described at actions/cache#315 (comment) that makes the windows build take over 20 minutes. Better to use no cache then.
  • Loading branch information
yajo authored and github-actions[bot] committed Aug 8, 2020
1 parent 16be955 commit a957f0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ jobs:
echo "::set-env name=PY::$((python -VV; pip freeze) | sha256sum | cut -d' '
-f1)"
- uses: actions/cache@v2.1.0
# HACK https://github.com/actions/cache/issues/315
if: ${{ runner.os != 'Windows' }}
with:
path: |
.cache
Expand Down

0 comments on commit a957f0e

Please sign in to comment.