Alex Couture-Beil

Results 209 comments of Alex Couture-Beil

Creating a robust solution to this is not as easy as it sounds, since an Earthfile might contain an `IF`, that must first be evaluated before determining if a `RUN...

Does running earthly with the verbose and debugging flags give any extra information? Can you try running `earthly -VD github.com/earthly/hello-world:main+hello`; followed by checking the `earthly-buildkitd` container for any additional logs:...

We had another user report the same issue today: ``` output | --> exporting outputs output | [ ] 0% transferring (via tar) registry.com/long/path/to/my/image:HEAD output | WARN: (exporting outputs) failed...

for reference: https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#example-running-a-multi-line-script

mostly a copy/paste from https://github.com/earthly/earthly/issues/587#issuecomment-1255633387 : [v0.6.24](https://github.com/earthly/earthly/releases/tag/v0.6.24) introduces a solution for this: ```Earthfile VERSION --try 0.6 example: FROM ... TRY # only a single RUN command is currently supported; no...

@DeveloperC286 sorry for the delay (life has been busy of late). Do you have a public gitlab repo with this config -- I'm most curious to see working; otherwise I...

thanks for the links @DeveloperC286 :raised_hands: I added a much smaller `before_script` section to perform the bootstrap and docker login -- how does this look?

> @alexcb > > Just curious why is the `docker login` required? It's not strictly-required*; however it helps with avoiding docker hub rate limiting issues. *unless one is pushing to...

This might be showing up in https://github.com/earthly/earthly/issues/2307#issue-1419514913 where failed commands each introduce a 5 second delay.

great find @rrjjvv ! It would appear that this slowness happens in the upstream moby/buildkit source too. When no sessionID is specified on the llb.Local call, the localSourceHandler will do...