From 7fc7a3effcd084191bfdb8d9ed5e5d244601ec87 Mon Sep 17 00:00:00 2001 From: Kiriti Gowda Date: Thu, 8 Feb 2024 11:38:42 -0800 Subject: [PATCH] Jenkins - Run Additional Tests (#230) [ROCm/rocdecode commit: 9e6f2111c49c095d7a665e479e160cdefd58e89b] --- projects/rocdecode/.jenkins/common.groovy | 3 +++ projects/rocdecode/.jenkins/precheckin.groovy | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/projects/rocdecode/.jenkins/common.groovy b/projects/rocdecode/.jenkins/common.groovy index 656dfdbe49..296ef42fd8 100644 --- a/projects/rocdecode/.jenkins/common.groovy +++ b/projects/rocdecode/.jenkins/common.groovy @@ -51,6 +51,9 @@ def runTestCommand (platform, project) { wget http://math-ci.amd.com/userContent/computer-vision/HevcConformance/*zip*/HevcConformance.zip unzip HevcConformance.zip python3 /opt/rocm/share/rocdecode/test/testScripts/run_rocDecode_Conformance.py --videodecode_exe ./../rocdecode-sample/videodecode --files_directory ./HevcConformance --results_directory . + cd ../ && cd rocdecode-sample + wget http://math-ci.amd.com/userContent/computer-vision/data1.img + LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:/opt/rocm/lib${libLocation} ./videodecode -i ./data1.img """ platform.runCommand(this, command) diff --git a/projects/rocdecode/.jenkins/precheckin.groovy b/projects/rocdecode/.jenkins/precheckin.groovy index 05d2ba7da2..a078fcd5c9 100644 --- a/projects/rocdecode/.jenkins/precheckin.groovy +++ b/projects/rocdecode/.jenkins/precheckin.groovy @@ -47,7 +47,7 @@ ci: { def propertyList = ["compute-rocm-dkms-no-npi-hipclang":[pipelineTriggers([cron('0 1 * * 0')])]] propertyList = auxiliary.appendPropertyList(propertyList) - def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu22:['gfx908'], ubuntu20:['gfx906'], centos7:['gfx906'], centos8:['gfx908']])] + def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu20:['gfx90a'], ubuntu22:['gfx1101'], rhel8:['gfx1030'], rhel9:['gfx942']])] jobNameList = auxiliary.appendJobNameList(jobNameList) propertyList.each @@ -72,7 +72,7 @@ ci: { if(!jobNameList.keySet().contains(urlJobName)) { properties(auxiliary.addCommonProperties([pipelineTriggers([cron('0 1 * * *')])])) stage(urlJobName) { - runCI([ubuntu22:['gfx906']], urlJobName) + runCI([ubuntu22:['gfx942']], urlJobName) } } }