From 722735defff12cf12bb92d3de0f60bd7ec9e6fd0 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Apr 2021 02:39:52 +0000 Subject: [PATCH] Fix CI --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1385ba6..f6cf74a3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,8 +29,14 @@ jobs: git merge matt/2021-03-java-bindings-base cd .. git clone https://github.com/lightningdevkit/ldk-c-bindings + - name: Rebuild C bindings without STD for WASM + run: | + cd ldk-c-bindings + ./genbindings.sh ../rust-lightning false + mv target/wasm32-wasi ./ + cd .. - name: Rebuild C bindings, and check the sample app builds + links - run: cd ldk-c-bindings && ./genbindings.sh ../rust-lightning true && cd .. + run: cd ldk-c-bindings && ./genbindings.sh ../rust-lightning true && mv wasm32-wasi target/ && cd .. - name: Build Java/TS Debug Bindings run: ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-11-openjdk-amd64/include/ -I/usr/lib/jvm/java-11-openjdk-amd64/include/linux/" true false - name: Run Java Tests against Debug Bindings -- 2.30.2