From fdbd7288677be764c77a049f028d0b8e9cc40b4e Mon Sep 17 00:00:00 2001 From: gitlost Date: Fri, 12 Sep 2025 04:58:32 +0100 Subject: [PATCH] github ci: macos: try installing GS1 Syntax Engine --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e5fee14..76a086e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,9 @@ jobs: - name: Install libpng-dev run: sudo apt-get install libpng-dev + - 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 + - name: Install locale shell: bash run: sudo locale-gen de_DE.UTF-8 && sudo update-locale @@ -158,6 +161,9 @@ jobs: shell: bash 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 + - name: Configure CMake working-directory: build shell: bash