New deploys have been failing server-side at the "testing if installed package can be loaded" step. The fs R package builds, but its shared library can't resolve libuv.so.1 at load time, so every downstream package that imports fs (directly or transitively) fails to install.
Dep path: shiny → bslib → sass → fs, so every Shiny app on Blockyard is affected, not just blockr boards.
Evidence it's a recent regression:
- App
test (Nicolas's demo), bundle built 2026-04-16: running ✅
- App
blockyard-empty (mine), bundle attempted 2026-04-20: failed ❌
- Same dependency chain, different outcomes → builder image changed.
Full error from by deploy --wait:
* installing *source* package 'blockr.core' ...
** testing if installed package can be loaded
Error: package or namespace load failed for 'blockr.core':
.onLoad failed in loadNamespace() for 'blockr.core', details:
call: dyn.load(file, DLLpath = DLLpath, ...)
error: unable to load shared object '/store/.builds/b4dfbd3e-7766-42b8-8616-45340ea62e43/fs/libs/fs.so':
libuv.so.1: cannot open shared object file: No such file or directory
Error: loading failed
ERROR: loading failed
Suggested fix: add libuv1 to the builder image (and/or the base image replacement mentioned in #191):
RUN apt-get update && apt-get install -y libuv1
Happy to retest once pushed.
New deploys have been failing server-side at the "testing if installed package can be loaded" step. The
fsR package builds, but its shared library can't resolvelibuv.so.1at load time, so every downstream package that importsfs(directly or transitively) fails to install.Dep path:
shiny → bslib → sass → fs, so every Shiny app on Blockyard is affected, not just blockr boards.Evidence it's a recent regression:
test(Nicolas's demo), bundle built 2026-04-16:running✅blockyard-empty(mine), bundle attempted 2026-04-20:failed❌Full error from
by deploy --wait:Suggested fix: add
libuv1to the builder image (and/or the base image replacement mentioned in #191):RUN apt-get update && apt-get install -y libuv1Happy to retest once pushed.