We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46e76c commit 9ab9a0aCopy full SHA for 9ab9a0a
.github/actions/install-dependencies/action.yml
@@ -51,5 +51,9 @@ runs:
51
run: |
52
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
53
pushd ${{ inputs.destination }}/ldk-c-bindings
54
- ./genbindings.sh ../rust-lightning true
+ if [ "$RUNNER_OS" == "macOS" ]; then
55
+ ./genbindings.sh ../rust-lightning true skip-tests
56
+ else
57
+ ./genbindings.sh ../rust-lightning true
58
+ fi
59
popd
0 commit comments