You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm setting up a set of GitLab CI jobs to run tests and assemble my project. These tasks are handled in separate jobs, however I would like the test job to be able to use the results from the build job. I tried asking GitLab to preserve the contents of the out/ directory between these jobs, but it gave me the following error:
WARNING: File ignored: out/mill-worker-MfYdUAhWymwPIq7yiMtfEgBbQzg=-1/mill-2464e2577abfd5cb4ed89a550d6709b7-io
ERROR: Uploading artifacts as "archive" to coordinator... 413 Request Entity Too Large id=44625 responseStatus=413 Request Entity Too Large status=413 token=glcbt-64
I guess that all of out/ is too much for this GitLab job and I need to prune some paths out. But I'm not sure which directories I should include and which I should leave out. My module is called server, so I guess out/server/ along with out/mill-build/, but anything else?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm setting up a set of GitLab CI jobs to run tests and assemble my project. These tasks are handled in separate jobs, however I would like the test job to be able to use the results from the build job. I tried asking GitLab to preserve the contents of the
out/
directory between these jobs, but it gave me the following error:WARNING: File ignored: out/mill-worker-MfYdUAhWymwPIq7yiMtfEgBbQzg=-1/mill-2464e2577abfd5cb4ed89a550d6709b7-io ERROR: Uploading artifacts as "archive" to coordinator... 413 Request Entity Too Large id=44625 responseStatus=413 Request Entity Too Large status=413 token=glcbt-64
I guess that all of
out/
is too much for this GitLab job and I need to prune some paths out. But I'm not sure which directories I should include and which I should leave out. My module is calledserver
, so I guessout/server/
along without/mill-build/
, but anything else?Beta Was this translation helpful? Give feedback.
All reactions