We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ff9eb commit 7fe5e09Copy full SHA for 7fe5e09
.github/actions/install-dependencies/action.yml
@@ -17,6 +17,8 @@ runs:
17
if: ${{ runner.os == 'macOS' }}
18
run: |
19
brew install gnu-sed
20
+ mkdir -p /tmp/gnu-bin
21
+ ln -s "$(command -v gsed)" /tmp/gnu-bin/sed
22
- name: Checkout Rust-Lightning and LDK-C-Bindings git
23
shell: bash
24
@@ -49,7 +51,9 @@ runs:
49
51
- name: Generate C Bindings
50
52
53
- export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"
54
+ # Alias sed as gsed, if applicable
55
+ export PATH="/tmp/gnu-bin:$PATH"
56
+
57
pushd ${{ inputs.destination }}/ldk-c-bindings
58
if [ "$RUNNER_OS" == "macOS" ]; then
59
./genbindings.sh ../rust-lightning true skip-tests
0 commit comments