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) } } }