From 85d70be752b26c9cb68d2f7067f12d4f5ebb91a7 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Tue, 30 Mar 2021 03:11:57 +0000 Subject: [PATCH] ci: stop passing --enable-ubsan It's just a follow-up to 5f404236273bb211 (where --enable-ubsan was removed). Signed-off-by: Evgeny Vereshchagin --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c01275a1e..3deb22167 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,11 +47,7 @@ jobs: BUILD="$(pwd)/build" mkdir -p "${BUILD}" cd "${BUILD}" - if [ "${{ matrix.compiler }}" = "gcc" ]; then - ../configure --enable-tests --enable-ubsan --with-distro=unknown - else - ../configure --enable-tests --with-distro=unknown - fi + ../configure --enable-tests --with-distro=unknown # Build make -j4 -- 2.47.2