Hi everyone. I have a problem with my CD workflow ...
# general
f
Hi everyone. I have a problem with my CD workflow on GitHub actions, everytime in the
./pants package
step it failed with the following error
Failed to digest inputs: "Error storing Digest { hash: Fingerprint<a682886bff95b6d0ffae4e1d3efe75bd9dd51cf54aa42a81247a2c7d1ceee4ca>, size_bytes: 95935573 }: Input/output error
. I don't know what to do. I tried to increase memory and storage in my runner, but that doesn't seem to be the problem. I also tried to play with global options (
local_store_files_max_size_bytes
and
local_store_directories_max_size_bytes
) but that doesn't change anything either. The
package
step builds PEX files and copy them on Docker images, this error happened during Docker builds. That's weird because it works on my machine.
PEX files are around ~100MB each
a
https://pantsbuild.slack.com/archives/C046T6T9U/p1661876236036569 I think I had a similar issue. Changing layout to packed helped in my case
f
Thanks! I will try