This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git
The following commit(s) were added to refs/heads/main by this push:
new b3c0a89 Updating the nghttp2 hash reference. (#25)
b3c0a89 is described below
commit b3c0a899ebf523827ffa87ef20285519aa3f47ed
Author: Brian Neradt <[email protected]>
AuthorDate: Mon Jul 19 14:36:40 2021 -0400
Updating the nghttp2 hash reference. (#25)
---
docker/alma/build_h3_tools.sh | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/docker/alma/build_h3_tools.sh b/docker/alma/build_h3_tools.sh
index d04a7b2..aa064c6 100755
--- a/docker/alma/build_h3_tools.sh
+++ b/docker/alma/build_h3_tools.sh
@@ -116,7 +116,16 @@ echo "Building nghttp2 ..."
[ ! -d nghttp2 ] && git clone https://github.com/tatsuhiro-t/nghttp2.git
cd nghttp2
git checkout --track -b quic origin/quic
-git checkout d2e570c72e169ed88557ce5108df34d34d4f7f08
+# This commit will be removed whenever the nghttp2 author rebases origin/quic.
+# For reference, this commit is currently described as:
+#
+# commit cdf58e370e6a843b0965aabcd75908ca52633b60
+# Author: Tatsuhiro Tsujikawa <[email protected]>
+# Date: Sat Mar 27 23:37:37 2021 +0900
+#
+# Compile with the latest ngtcp2
+
+git checkout cdf58e370e6a843b0965aabcd75908ca52633b60
autoreconf -if
./configure --prefix=${BASE}
PKG_CONFIG_PATH=${BASE}/lib/pkgconfig:${OPENSSL_PREFIX}/lib/pkgconfig
CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
${MAKE} -j $(nproc)