From fa4dd9dbf033cc6cee676f461a47d9c5751f4be8 Mon Sep 17 00:00:00 2001 From: gilbertlee-amd <44450918+gilbertlee-amd@users.noreply.github.com> Date: Fri, 22 Sep 2023 14:38:31 -0600 Subject: [PATCH] Fixing hipcc location for CI (#47) [ROCm/rccl-tests commit: 46375b1c527b2e3afe80fdd6dd136151bd939675] --- projects/rccl-tests/.jenkins/common.groovy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/rccl-tests/.jenkins/common.groovy b/projects/rccl-tests/.jenkins/common.groovy index 7426d35d75..fe58a3e41a 100644 --- a/projects/rccl-tests/.jenkins/common.groovy +++ b/projects/rccl-tests/.jenkins/common.groovy @@ -14,7 +14,7 @@ def runCompileCommand(platform, project, jobName) ${auxiliary.exitIfNotSuccess()} cd ${project.paths.project_build_prefix} cmake \ - -DCMAKE_CXX_COMPILER=/opt/rocm/hip/bin/hipcc \ + -DCMAKE_CXX_COMPILER=/opt/rocm/bin/hipcc \ -S . -B build make -C build -j\$(nproc) ${auxiliary.exitIfNotSuccess()} @@ -30,9 +30,9 @@ def runTestCommand (platform, project) def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix} - python3 -m pip install --upgrade pytest - python3 -m pytest --version - python3 -m pytest -k "not MPI and not host and not fine" --verbose --junitxml=./testreport.xml + python3 -m pip install --upgrade pytest + python3 -m pytest --version + python3 -m pytest -k "not MPI and not host and not fine" --verbose --junitxml=./testreport.xml """ platform.runCommand(this, command)