Skip to content

Commit 9ab9a0a

Browse files
committed
Skip genbindings tests on macOS.
1 parent c46e76c commit 9ab9a0a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/actions/install-dependencies/action.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,9 @@ runs:
5151
run: |
5252
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
5353
pushd ${{ inputs.destination }}/ldk-c-bindings
54-
./genbindings.sh ../rust-lightning true
54+
if [ "$RUNNER_OS" == "macOS" ]; then
55+
./genbindings.sh ../rust-lightning true skip-tests
56+
else
57+
./genbindings.sh ../rust-lightning true
58+
fi
5559
popd

0 commit comments

Comments
 (0)