projects
/
haproxy-2.5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0188108
)
CI: github actions: relax OpenSSL-3.0.0 version comparision
author
Ilya Shipitsin
<chipitsine@gmail.com>
Sun, 15 Aug 2021 07:55:08 +0000
(12:55 +0500)
committer
Willy Tarreau
<w@1wt.eu>
Mon, 16 Aug 2021 10:48:49 +0000
(12:48 +0200)
we better to check for 3.0.0 presense, than exact version
.github/matrix.py
patch
|
blob
|
history
diff --git
a/.github/matrix.py
b/.github/matrix.py
index
fdd7695
..
0478aa4
100755
(executable)
--- a/
.github/matrix.py
+++ b/
.github/matrix.py
@@
-118,7
+118,7
@@
for CC in ["gcc", "clang"]:
flags = ["USE_OPENSSL=1"]
if ssl == "BORINGSSL=yes":
flags.append("USE_QUIC=1")
- if ssl == "OPENSSL_VERSION=3.0.0-alpha17":
+ if "OPENSSL_VERSION=3.0.0" in ssl:
flags.append('DEBUG_CFLAGS="-g -Wno-deprecated-declarations"')
if ssl != "stock":
flags.append("SSL_LIB=${HOME}/opt/lib")