Skip to content

Commit b437b3b

Browse files
committed
Fix c bindings ci
1 parent 49e1f33 commit b437b3b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,12 @@ jobs:
216216
steps:
217217
- uses: actions/checkout@v4
218218
- uses: dtolnay/rust-toolchain@stable
219+
- run: |
220+
cd bindings/c
221+
cargo build
222+
name: Build ctaffy library
219223
- run: |
220224
cd bindings/c/examples
221225
./compile_basic.sh
222-
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../../target/debug ./basic
226+
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:../../../target/debug ./basic
223227
name: Build C Bindings

0 commit comments

Comments
 (0)