From 1daaa2c6b32e28d35ef7994b29f3c6bf8a994a35 Mon Sep 17 00:00:00 2001 From: Juee Himalbhai Desai Date: Fri, 8 Sep 2023 12:01:44 -0700 Subject: [PATCH] contrib/intel/jenkins: Fix logfile variable for dmabuf stage The output variable was getting re-written with another log file in the CI. This commit fixes that error. Signed-off-by: Juee Himalbhai Desai --- contrib/intel/jenkins/Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/intel/jenkins/Jenkinsfile b/contrib/intel/jenkins/Jenkinsfile index 2676c234da6..0e4db80bd13 100644 --- a/contrib/intel/jenkins/Jenkinsfile +++ b/contrib/intel/jenkins/Jenkinsfile @@ -553,11 +553,11 @@ pipeline { steps { script { dir ("${env.WORKSPACE}/${SCRIPT_LOCATION}/") { - output = "${LOG_DIR}/DMABUF-Tests_verbs-rxm_dmabuf_reg" + dmabuf_output = "${LOG_DIR}/DMABUF-Tests_verbs-rxm_dmabuf_reg" cmd = """ python3.9 runtests.py --test=dmabuf \ --prov=verbs --util=rxm""" - slurm_batch("fabrics-ci", "1", "${output}", "${cmd}") - slurm_batch("fabrics-ci", "2", "${output}", "${cmd}") + slurm_batch("fabrics-ci", "1", "${dmabuf_output}", "${cmd}") + slurm_batch("fabrics-ci", "2", "${dmabuf_output}", "${cmd}") } } }