Skip to content
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

[feature request] add param to pass cache file on post action through gzip #832

Open
cherviakovtaskworld opened this issue Dec 24, 2024 · 0 comments · May be fixed by #833
Open

[feature request] add param to pass cache file on post action through gzip #832

cherviakovtaskworld opened this issue Dec 24, 2024 · 0 comments · May be fixed by #833

Comments

@cherviakovtaskworld
Copy link

Using this action in our CI we encountered issue when runner machine run out of storage space on post cache step. Checking command used in this step we can see that it does not use compression and result image size in our case is pretty big:

docker save --output ~/.docker-images.tar image1 image2 image3
5.3G

Locally tested that the same command with gzip take 2 more minutes but produce file, which size is considerably smaller:

docker save  image1 image2 image3 | gzip > ~/.docker-images.tar
1.7G

After checking this action docs there seems to be not way to configure it to make use gzip, which it would be really helpful in our case.

@cherviakovtaskworld cherviakovtaskworld linked a pull request Dec 24, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

1 participant