From a287234366a5cb571237068d19a34a154fa06dd9 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 19 Jul 2023 18:39:31 +0000 Subject: [PATCH] Add a c_bindings test to `check-compiles.sh` as it should build --- ci/check-compiles.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/check-compiles.sh b/ci/check-compiles.sh index 193c2b4ef..af88bceee 100755 --- a/ci/check-compiles.sh +++ b/ci/check-compiles.sh @@ -7,3 +7,4 @@ cargo doc cargo doc --document-private-items cd fuzz && RUSTFLAGS="--cfg=fuzzing" cargo check --features=stdin_fuzz cd ../lightning && cargo check --no-default-features --features=no-std +cd .. && RUSTC_BOOTSTRAP=1 RUSTFLAGS="--cfg=c_bindings" cargo check -Z avoid-dev-deps -- 2.39.5