From 95be8d1ae94f298a604eb5d0a35cce7b925a156c Mon Sep 17 00:00:00 2001 From: gitlost Date: Fri, 12 Sep 2025 05:15:09 +0100 Subject: [PATCH] github ci: macos: try hack around ldconfig not found --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76a086e8..7100ec1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,7 +162,7 @@ jobs: run: git config --global --add safe.directory ${GITHUB_WORKSPACE} && cmake -E make_directory build - name: Install GS1 Syntax Engine - run: git clone https://github.com/gs1/gs1-syntax-engine && cd gs1-syntax-engine/src/c-lib && make CFLAGS_G='-DEXCLUDE_SYNTAX_DICTIONARY_LOADER' lib && sudo make install + run: git clone https://github.com/gs1/gs1-syntax-engine && cd gs1-syntax-engine/src/c-lib && make CFLAGS_G='-DEXCLUDE_SYNTAX_DICTIONARY_LOADER' lib && (sudo make install || true) - name: Configure CMake working-directory: build