From 993674fc8d80666b3bf2485476ea283d9d274ec7 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Thu, 18 Dec 2025 11:07:10 +0100 Subject: [PATCH] Continue on error on CI --- .github/workflows/ci-reusable.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-reusable.yml b/.github/workflows/ci-reusable.yml index e1a6b61e..4d447def 100644 --- a/.github/workflows/ci-reusable.yml +++ b/.github/workflows/ci-reusable.yml @@ -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