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 6e2d463 Make quiche regression tests use -R 1 (#138)
6e2d463 is described below
commit 6e2d463434687c801a53bcb5417cc7c8abe9fd33
Author: Brian Neradt <[email protected]>
AuthorDate: Fri Mar 31 16:52:52 2023 -0500
Make quiche regression tests use -R 1 (#138)
I initially configured the quiche branch job to use `-R 3` for the
regression tests while all other jenkins scripts use `-R 1`. I thought
we might fix the `-R 3` but that hasn't happened yet. The issue is
recorded here:
https://github.com/apache/trafficserver/issues/9576
Once that is fixed, we should update some CI jobs to use `-R 3` again.
In the meantime, we should make the quiche branch job use `-R 1` to
match the other jobs and catch if something breaks the quiche builds.
---
jenkins/branch/quiche.pipeline | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/jenkins/branch/quiche.pipeline b/jenkins/branch/quiche.pipeline
index 6774220..e04d10b 100644
--- a/jenkins/branch/quiche.pipeline
+++ b/jenkins/branch/quiche.pipeline
@@ -95,7 +95,7 @@ pipeline {
set -x
source
/opt/rh/gcc-toolset-11/enable
make -j4 V=1 Q= check
- /tmp/ats/bin/traffic_server -K
-k -R 3
+ /tmp/ats/bin/traffic_server -K
-k -R 1
'''
}
}