fix(local): make trial-build-patch.R detect non-throwing build failures #134
Loading…
Reference in a new issue
No description provided.
Delete branch "t3code/fix-trial-build-patch-falsegreen"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
local/trial-build-patch.R-- the single-package acceptance gate the proposer prints for humans to run (PGPASS=... Rscript local/trial-build-patch.R <pkg>) -- reportedTrial build OKfor rstan even though rstan.so failed to load (symbol not found: tbb::detail::r1::observe).Same false-green as the registry gate before #130:
build_binary_package()catches failures internally and returns"error"rather than throwing, so atryCatchthat only treats a thrown exception as failure passes a broken build. Now inspects the return value (mirrors trial-build-registry.R). Found while verifying the rstan/oneTBB unblock.