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 71282fe PATH updates to pick up openssl-quic curl. (#20)
71282fe is described below
commit 71282fea3cd644f2d2b0faea8eb2069756b98f6e
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Jun 30 16:43:40 2021 -0500
PATH updates to pick up openssl-quic curl. (#20)
This updates the PATH variable for the AuTest build and test run so that
it runs with /opt/bin/curl which is built with openssl-quic support.
---
jenkins/branch/autest.pipeline | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/jenkins/branch/autest.pipeline b/jenkins/branch/autest.pipeline
index 59435ae..24b9a65 100644
--- a/jenkins/branch/autest.pipeline
+++ b/jenkins/branch/autest.pipeline
@@ -53,6 +53,10 @@ pipeline {
source /opt/rh/gcc-toolset-9/enable
sudo update-crypto-policies --set LEGACY
+ # We want to pick up the OpenSSL-QUIC
version of curl in /opt/bin.
+ # The HTTP/3 AuTests depend upon this,
so update the PATH accordingly.
+ export PATH=/opt/bin:${PATH}
+
# Change permissions so that all files
are readable
# (default user umask may change and
make these unreadable)
sudo chmod -R o+r .
@@ -71,6 +75,10 @@ pipeline {
dir('src/tests') {
sh '''
set +e
+ # We want to pick up the
OpenSSL-QUIC version of curl in /opt/bin.
+ # The HTTP/3 AuTests depend
upon this, so update the PATH accordingly.
+ export PATH=/opt/bin:${PATH}
+
mkdir -p
${WORKSPACE}/output/${GITHUB_BRANC}
./autest.sh --ats-bin
/tmp/ats/bin/ --sandbox /tmp/sandbox || true
if [ -n "$(ls -A
/tmp/sandbox/)" ]; then