From d4d40927f904315cb4cb3075e3343a476f6a7316 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Tue, 7 May 2024 12:08:10 +0200 Subject: [PATCH] github: test with the embedded yajl library Signed-off-by: Giuseppe Scrivano --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b21d6c53..f68377ab 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,13 +38,13 @@ jobs: install: | apt-get update -q -y - apt-get install -q -y python3 automake libtool autotools-dev git make cmake pkg-config gcc wget libyajl-dev + apt-get install -q -y python3 automake libtool autotools-dev git make cmake pkg-config gcc wget run: | find $(pwd) -name '.git' -exec bash -c 'git config --global --add safe.directory ${0%/.git}' {} \; ./autogen.sh - ./configure CFLAGS='-Wall -Wextra -Werror' - make -j $(nproc) distcheck + ./configure CFLAGS='-Wall -Wextra -Werror --enable-embedded-yajl' + make -j $(nproc) distcheck DISTCHECK_CONFIGURE_FLAGS=--enable-embedded-yajl # check that the working dir is clean git describe --broken --dirty --all | grep -qv dirty