Skip to content

Commit

Permalink
contrib/intel/jenkins: Fix logfile variable for dmabuf stage
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Juee14Desai authored and zachdworkin committed Sep 8, 2023
1 parent 8f10ce3 commit 1daaa2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
}
Expand Down

0 comments on commit 1daaa2c

Please sign in to comment.