From 142e8e2ea6e241760530f8a8b4a85a81c2de3372 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 27 Aug 2020 17:19:14 -0700 Subject: [PATCH] Temporarly disable C header checks --- ci/script.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/script.sh b/ci/script.sh index 0b0c29ad..d36c8254 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -28,17 +28,17 @@ _ cargo +nightly clippy --workspace --all-targets -- --deny=warnings # Build client libraries ( - export SPL_CBINDGEN=1 # <-- Force cbindgen header generation + #export SPL_CBINDGEN=1 # <-- Force cbindgen header generation _ cargo build ) _ cargo run --manifest-path=ci/client/Cargo.toml # Check generated C headers -_ git diff --exit-code token/program/inc/token.h -_ cc token/program/inc/token.h -o target/token.gch - -_ git diff --exit-code token-swap/program/inc/token-swap.h -_ cc token-swap/program/inc/token-swap.h -o target/token-swap.gch +#_ git diff --exit-code token/program/inc/token.h +#_ cc token/program/inc/token.h -o target/token.gch +# +#_ git diff --exit-code token-swap/program/inc/token-swap.h +#_ cc token-swap/program/inc/token-swap.h -o target/token-swap.gch # Run clippy for all program crates, with the `program` feature enabled