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 6b3d582  Ensuring /usr/local/go/bin in PATH for autests (#149)
6b3d582 is described below

commit 6b3d5823d21c0d6f29081481cfa2d850be58aadf
Author: Brian Neradt <[email protected]>
AuthorDate: Mon Apr 24 14:24:25 2023 -0500

    Ensuring /usr/local/go/bin in PATH for autests (#149)
    
    Ensure that the pipelines running autest.sh have /usr/local/go/bin in
    their PATH so it can find go-httpbin and h2spec.
---
 jenkins/branch/autest.pipeline   | 1 +
 jenkins/branch/coverage.pipeline | 1 +
 jenkins/branch/quiche.pipeline   | 1 +
 jenkins/github/autest.pipeline   | 1 +
 4 files changed, 4 insertions(+)

diff --git a/jenkins/branch/autest.pipeline b/jenkins/branch/autest.pipeline
index 7514903..1d96759 100644
--- a/jenkins/branch/autest.pipeline
+++ b/jenkins/branch/autest.pipeline
@@ -103,6 +103,7 @@ pipeline {
                                                # 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}
+                                               export 
PATH=/usr/local/go/bin:${PATH}
 
                                                mkdir -p 
${WORKSPACE}/output/${GITHUB_BRANCH}
 
diff --git a/jenkins/branch/coverage.pipeline b/jenkins/branch/coverage.pipeline
index ccc3aea..52f002a 100644
--- a/jenkins/branch/coverage.pipeline
+++ b/jenkins/branch/coverage.pipeline
@@ -137,6 +137,7 @@ pipeline {
                                                # 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}
+                                               export 
PATH=/usr/local/go/bin:${PATH}
 
                                                ./autest.sh --ats-bin 
/tmp/ats/bin/ --sandbox /tmp/sandbox
                                                '''
diff --git a/jenkins/branch/quiche.pipeline b/jenkins/branch/quiche.pipeline
index febcada..1bfcc9e 100644
--- a/jenkins/branch/quiche.pipeline
+++ b/jenkins/branch/quiche.pipeline
@@ -111,6 +111,7 @@ pipeline {
                                                set +e
 
                                                export PATH=/opt/bin:${PATH}
+                                               export 
PATH=/usr/local/go/bin:${PATH}
 
                                                
export_dir="${WORKSPACE}/output/${GITHUB_PR_BRANCH}"
                                                mkdir -p ${export_dir}
diff --git a/jenkins/github/autest.pipeline b/jenkins/github/autest.pipeline
index 0f09b91..57c7e77 100644
--- a/jenkins/github/autest.pipeline
+++ b/jenkins/github/autest.pipeline
@@ -97,6 +97,7 @@ pipeline {
                                                # 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}
+                                               export 
PATH=/usr/local/go/bin:${PATH}
                                                
                                                
export_dir="${WORKSPACE}/output/${GITHUB_PR_NUMBER}"
                                                mkdir -p ${export_dir}

Reply via email to