deno_registry2 icon indicating copy to clipboard operation
deno_registry2 copied to clipboard

Errors when trying to publish: "No space left on device"

Open christophgysin opened this issue 3 years ago • 12 comments

I just tried to publish aws_sdk v3.7.0.0, and got:

https://deno.land/status/6040bc900015b3d40011fae8

Status: Error: No space left on device (os error 28)

christophgysin avatar Mar 04 '21 11:03 christophgysin

How big is the module you are trying to publish?

lucacasonato avatar Mar 04 '21 11:03 lucacasonato

$ du -sh deno
159M	deno

christophgysin avatar Mar 04 '21 11:03 christophgysin

Can you try to redeliver the webhook?

lucacasonato avatar Mar 04 '21 11:03 lucacasonato

Sure: https://deno.land/status/6040c0d3000e775d008ff687 (still ongoing)

christophgysin avatar Mar 04 '21 11:03 christophgysin

I have published v3.6.1.0 shortly before, could it be that both runs were competing for my 200Mb quota?

christophgysin avatar Mar 04 '21 11:03 christophgysin

The webhook status reports:

Status: Error: Failed to clone git repository https://github.com/christophgysin/aws-sdk-js-v3 at tag v3.7.0.0

But the module seems to have been published: https://deno.land/x/[email protected]

christophgysin avatar Mar 04 '21 11:03 christophgysin

@christophgysin Can you try publish 3.7.0.1 ? I think due to the OOM error 3.7.0.0 was not published in its entirety.

lucacasonato avatar Mar 04 '21 11:03 lucacasonato

Sure, I will publish 3.7.0.1 later today.

christophgysin avatar Mar 04 '21 11:03 christophgysin

Published 3.7.0.1, same result:

https://deno.land/status/6040dad90060a69400416472

Status: Error: Failed to clone git repository https://github.com/christophgysin/aws-sdk-js-v3 at tag v3.7.0.1

christophgysin avatar Mar 04 '21 13:03 christophgysin

Are these two separate issues? Should I open a new issue for "Failed to clone git repository"?

christophgysin avatar Mar 04 '21 13:03 christophgysin

FYI: I just pushed 3.8.0.0, and got:

https://deno.land/status/6044d72800add12b00d5f15f

Status: Success: Published module. Failed to run dependency analysis v2.

christophgysin avatar Mar 07 '21 13:03 christophgysin

My module react_icons also suffers from Failed to run dependency analysis v2.

That should be fixed By #304

In my case, the project size is 21M, and I had to drop some icon-set and use some tips to reduce the module size.

And now I need to find a place to add documentation or to split the project to allow single atomic import. , so instead of writing

import { FaBeer } from 'react-icons/fa';

That will import all Font Awesome icons to get the Beer SVG.

I will be able to write

import FaBeer from 'react-icons/fa/FaBeer';

To only cache the Beer SVG.

Please lucacasonato give me your point. ~~That the way we should use SVG icon with fresh ?~~ I found the module tabler_icons_tsx but now I also have react_icons

UrielCh avatar Nov 27 '22 06:11 UrielCh