Skip to content

Commit 722735d

Browse files
committed
Fix CI
1 parent 5025897 commit 722735d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,14 @@ jobs:
2929
git merge matt/2021-03-java-bindings-base
3030
cd ..
3131
git clone https://github.com/lightningdevkit/ldk-c-bindings
32+
- name: Rebuild C bindings without STD for WASM
33+
run: |
34+
cd ldk-c-bindings
35+
./genbindings.sh ../rust-lightning false
36+
mv target/wasm32-wasi ./
37+
cd ..
3238
- name: Rebuild C bindings, and check the sample app builds + links
33-
run: cd ldk-c-bindings && ./genbindings.sh ../rust-lightning true && cd ..
39+
run: cd ldk-c-bindings && ./genbindings.sh ../rust-lightning true && mv wasm32-wasi target/ && cd ..
3440
- name: Build Java/TS Debug Bindings
3541
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
3642
- name: Run Java Tests against Debug Bindings

0 commit comments

Comments
 (0)