From: Matt Corallo Date: Sat, 14 Jan 2023 06:33:48 +0000 (+0000) Subject: Fix WASM CI build due to Actions being trash X-Git-Tag: v0.0.113.0^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=sidebyside;h=09698b80ab6715a809dbfc3a2ed3f7ddd5bd3d9e;p=ldk-java Fix WASM CI build due to Actions being trash --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72537f94..0e2db3fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,6 +47,7 @@ jobs: - name: Rebuild C bindings without STD run: | cd ldk-c-bindings + git config --global safe.directory "*" ./genbindings.sh ../rust-lightning false - name: Build and Test TS Debug Bindings for Node run: | @@ -75,6 +76,7 @@ jobs: run: | export HOME=/root/ # Github actions is apparently broken export PATH=$(pwd)/$(echo node-*/bin):$PATH + git config --global safe.directory "*" ./genbindings.sh ./ldk-c-bindings/ wasm true true cd ts rm liblightningjs.wasm && ln -s $(pwd)/../liblightningjs_debug.wasm ./liblightningjs.wasm