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 ac44e99 /opt/boringssl/lib64 to LD_LIBRARY_PATH (#162)
ac44e99 is described below
commit ac44e9994c1fec265e522e72cf6cff5a9f71f8b8
Author: Brian Neradt <[email protected]>
AuthorDate: Fri May 12 10:18:07 2023 -0500
/opt/boringssl/lib64 to LD_LIBRARY_PATH (#162)
This is needed for now because the quiche rpath doesn't contain an
update for the location of the boringssl location. This should fix some
issues with quiche builds.
---
jenkins/branch/quiche.pipeline | 4 ++++
jenkins/github/rocky.pipeline | 5 +++++
2 files changed, 9 insertions(+)
diff --git a/jenkins/branch/quiche.pipeline b/jenkins/branch/quiche.pipeline
index 4a979a0..bcdd96e 100644
--- a/jenkins/branch/quiche.pipeline
+++ b/jenkins/branch/quiche.pipeline
@@ -69,6 +69,10 @@ pipeline {
source /opt/rh/gcc-toolset-11/enable
+ # We'll need this until Damian's quiche
patch lands which updates rpath:
+ #
https://github.com/cloudflare/quiche/pull/1508
+ export
LD_LIBRARY_PATH=/opt/boringssl/lib64:${LD_LIBRARY_PATH}
+
# Change permissions so that all files
are readable
# (default user umask may change and
make these unreadable)
sudo chmod -R o+r .
diff --git a/jenkins/github/rocky.pipeline b/jenkins/github/rocky.pipeline
index ff60e71..5c81ecf 100644
--- a/jenkins/github/rocky.pipeline
+++ b/jenkins/github/rocky.pipeline
@@ -48,6 +48,11 @@ pipeline {
set -x
set -e
source /opt/rh/gcc-toolset-11/enable
+
+ # We'll need this until Damian's quiche patch lands
which updates rpath:
+ # https://github.com/cloudflare/quiche/pull/1508
+ export
LD_LIBRARY_PATH=/opt/boringssl/lib64:${LD_LIBRARY_PATH}
+
autoreconf -fiv
./configure \
--with-quiche=/opt/quiche \