From ed17ca7006ecdb75a9a7aaa5459c3a4710b72399 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Sun, 12 Sep 2021 07:01:36 +0200 Subject: [PATCH] CI: Github Actions: re-enable Opentracing Miroslav already fixed the build of OpenTracing so we can re-enable it in the CI. For now variables are disabled but this will change soon. --- .github/matrix.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/matrix.py b/.github/matrix.py index 18bbd60ff..e3334a0b3 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -73,6 +73,7 @@ for CC in ["gcc", "clang"]: "CC": CC, "FLAGS": [ "USE_ZLIB=1", + "USE_OT=1", "OT_INC=${HOME}/opt/include", "OT_LIB=${HOME}/opt/lib", "OT_RUNPATH=1", @@ -147,6 +148,7 @@ matrix.append( "FLAGS": get_asan_flags(CC) + [ "USE_ZLIB=1", + "USE_OT=1", "OT_INC=${HOME}/opt/include", "OT_LIB=${HOME}/opt/lib", "OT_RUNPATH=1",