Phil Winder

Results 56 comments of Phil Winder

No idea. But my guess it will be something to do with an Alpine port of a package (like stdlib) that is out of date, in combination with SASS compiling....

As a work around I've found that doing something like `-- bash -c "erroring-thing | true"` forces the execution to succeed and sometimes the stderr is returned. But it depends...

Yeah I've definitely seen the job stuck at the node selection stage, with no green tick, even though I know the job is already running. Run a long gpu job...

Hang on, I think it already does that: ```bash cid=$(bacalhau docker run ubuntu echo hello) sleep 5 bacalhau get $cid cid=$(bacalhau docker run ubuntu echo hello) sleep 5 bacalhau get...

Oh ok, that makes sense. It's the shards dir that's the issue then. Can you suggest a preferred format then? May I suggest: ```bash > tree . - outputs |...

We've released `v0.3.4` now, if the fix was specifically in that version...

GCP have actually REDUCED our limits down to 2 now. I have altered the terraform code so that we have a second GPU node in Europe. That works. https://github.com/filecoin-project/bacalhau/commit/fd576f28cdfb26d3be33e774efd11de9e0714574 However,...

Thanks for the response. You can see that your script is the same as my script that I provided in the "how to recreate the problem" code. If you run...

Ah interesting. Ok, thanks for that. I guess it depends what you're using to compile. I've compiled go projects in the past and they've worked fine. The workaround I'm using...

Something like this would statically compile: `CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' .` This is passing `-static` to the external linker and disabling cgo (i.e. disable the ability...