From 30385e1e2a8abf468e7eb35e010a65e68adebd03 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 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b21d6c53..76952262 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,19 +38,18 @@ 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 --enable-embedded-yajl CFLAGS='-Wall -Wextra -Werror' + 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 make clean - ./configure --enable-embedded-yajl CFLAGS='-Wall -Wextra -Werror' - make -j $(nproc) distcheck + # check that the working dir is clean git describe --broken --dirty --all | grep -qv dirty test_and_build_rust_bindings: