From 17c1afc4c85d4f839f01778c39206f32ed8a001a Mon Sep 17 00:00:00 2001 From: Jo D Date: Fri, 29 May 2026 13:59:12 -0400 Subject: [PATCH] build(verify): add verify-local recipe for program-only build Bare `solana-verify build` SBF-compiles the whole workspace; clients/tests pull getrandom 0.2.17 which has no target_os="solana" backend and fails cargo build-sbf. Scope to the program lib via --library-name. --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index e63336f..10cbf6c 100644 --- a/justfile +++ b/justfile @@ -353,3 +353,6 @@ verify-mainnet: check-solana-verify --library-name subscriptions_program \ --remote \ -um + +verify-local: check-solana-verify + solana-verify build --library-name subscriptions_program