Skip to content

Commit fb231a4

Browse files
committed
Use the pinned version of cbindgen to fix determinism on fedora
1 parent 088d20f commit fb231a4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,11 @@ jobs:
192192
fetch-depth: 0
193193
- name: Install cbindgen
194194
run: |
195-
cargo install cbindgen
195+
git clone https://github.com/eqrion/cbindgen
196+
cd cbindgen/
197+
git checkout v0.20.0
198+
cargo update -p indexmap --precise "1.6.2" --verbose
199+
cargo install --locked --path .
196200
- name: Checkout Rust-Lightning and LDK-C-Bindings git
197201
run: |
198202
git config --global safe.directory '*'

0 commit comments

Comments
 (0)