-
Notifications
You must be signed in to change notification settings - Fork 383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include zstd #584
Comments
Is anyone awake here? The official GH Cypress action uses @actions/cache which prefers to use zstd. Since it's not included in the image you will see a large amount of warnings in your debug output and I'm guessing it falls back to gzip. |
https://github.com/actions/toolkit/tree/main/packages/cache#save-cache says: "Saves a cache containing the files in paths using the key provided. The files would be compressed using zstandard compression algorithm if You are right that debug level logs, for instance from running https://github.com/cypress-io/github-action/blob/master/.github/workflows/example-docker.yml show Nevertheless if Note that even if |
It affects us, too. We don't even want to share artifacts. Just regular UPDATE: Actually, I take it back. The cache version mismatch is caused by the different mount point inside the container. The path of the cache folder is used to determine the cache version. In the container it's |
Any plans to include |
|
Any other Cypress Docker images published from now on will also include |
Hi there,
I am attempting to use these during a parallel job execution. I would like to use
actions/cache@v2
instead ofupload-artifact
for sharing my build and cypress dependencies between jobs. This is because it is both faster, and a simpler DX (I don't have to tar and then extract node_modules, etc). However, using the cache action in the container results in a differentversion
being applied, which means my cache is always missed. According to this issue, it's becausezstd
is not available in the container. I've confirmed that that is true.It would be very helpful to add it to the containers! Let me know what you think, thanks!
PS. This is my workflow:
The text was updated successfully, but these errors were encountered: