Add docs for cross os cache compatibility

This commit is contained in:
Sampark Sharma 2022-12-26 10:54:30 +00:00 committed by GitHub
parent d1507cccba
commit 9ce89c57c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -62,4 +62,10 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
</details>
</details>
## Cross OS cache
From `v3.2.1` cache is cross os compatible. This means that a cache created on `ubuntu-latest` can be used by `windows-latest` and vice versa. This is useful when you want to cache dependencies which is available on different the OSs. This will help reduce the consumption of the cache quota. Things to keep in mind:
- Only cache those files which are compatible across OSs.
- Don't cache symlinks as they work differently on different OSs so would cause issues during cache restore.
- Put runner OS in the cache key if that cache is not ment to be used across OSs.