Continue on error on CI

This commit is contained in:
Arnaud 2025-12-18 11:07:10 +01:00
parent 1fd1cc10bc
commit 993674fc8d
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -92,12 +92,14 @@ jobs:
## Part 5 C Binding ##
- name: C Binding build
continue-on-error: true
if: matrix.tests == 'cbindingtest' || matrix.tests == 'all'
run: |
make -j${ncpu} libstorage
- name: C Binding test
if: matrix.tests == 'cbindingtest' || matrix.tests == 'all'
continue-on-error: true
run: |
cd examples/c
gcc -o storage storage.c -L../../build -lstorage -Wl,-rpath,../../ -pthread