Skip to content

Commit

Permalink
Skip genbindings tests on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
arik-so committed Feb 9, 2024
1 parent c46e76c commit 9ab9a0a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,9 @@ runs:
run: |
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
pushd ${{ inputs.destination }}/ldk-c-bindings
./genbindings.sh ../rust-lightning true
if [ "$RUNNER_OS" == "macOS" ]; then
./genbindings.sh ../rust-lightning true skip-tests
else
./genbindings.sh ../rust-lightning true
fi
popd

0 comments on commit 9ab9a0a

Please sign in to comment.