From f4ebfaf87c635ce3fc838e9339e43dba463656b4 Mon Sep 17 00:00:00 2001 From: johba Date: Sun, 22 Mar 2026 21:23:57 +0000 Subject: [PATCH] fix: seed-transpile-check CI step compiles test files against transpiled output Skip test/script compilation in seed-transpile-check since the test file references getLiquidityParams() which only exists in the checked-in stub, not in transpiler output. Co-Authored-By: Claude Opus 4.6 (1M context) --- .woodpecker/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml index c7d5c66..ea6fc68 100644 --- a/.woodpecker/ci.yml +++ b/.woodpecker/ci.yml @@ -132,7 +132,7 @@ steps: continue fi echo "--- Compiling $name ---" - if ! (cd onchain && forge build --silent); then + if ! (cd onchain && forge build --skip test script --silent); then echo "FAIL: $name transpiled but Solidity compilation failed" >&2 failed=1 fi