Skip to content

Commit 012bead

Browse files
authored
CI: allow XAPI linking with Lwt for now (#6415)
It sneaks in via xenstore_transport and tar.unix, fixing that requires patching those 2 libraries first. For now partially revert this test: only test for linking with OpenSSL, not Lwt. Fixes: 0832ae5 ("CP-53951: Drop SSL and Lwt dependency from XAPI")
2 parents 288b5c4 + be3b059 commit 012bead

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ocaml/xapi/check-no-lwtssl.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
SSL=libssl
44
CRYPTO=libcrypto
5-
# This is an OCaml library, but when it is linked
6-
# we also configure it to link libev, so look for that
7-
LWT=libev
8-
DEPS="${SSL}|${CRYPTO}|${LWT}"
5+
DEPS="${SSL}|${CRYPTO}"
96

107
ldd "$1" | grep -q -E "${DEPS}" 2>&1
118
if [ $? -eq 1 ]; then

0 commit comments

Comments
 (0)