From 9b3f762b68c8af7901b6b3f36ec322f80133df06 Mon Sep 17 00:00:00 2001 From: gilbertlee-amd <44450918+gilbertlee-amd@users.noreply.github.com> Date: Mon, 19 Oct 2020 13:08:24 -0600 Subject: [PATCH] Removing unnecessary flags from CI (#278) * Removing unnecessary flags from CI * Re-adding HSA_FORCE_FINE_GRAIN_PCIE in CI --- .jenkins/common.groovy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.jenkins/common.groovy b/.jenkins/common.groovy index 13ea33087f..2ba6866191 100644 --- a/.jenkins/common.groovy +++ b/.jenkins/common.groovy @@ -5,11 +5,10 @@ def runCompileCommand(platform, project, jobName) { project.paths.construct_build_prefix() - String hipclangArgs = jobName.contains('hipclang') ? '--hip-clang' : '' def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix} - LD_LIBRARY_PATH=/opt/rocm/hcc/lib ${project.paths.build_command} ${hipclangArgs} + LD_LIBRARY_PATH=/opt/rocm/hcc/lib ${project.paths.build_command} """ platform.runCommand(this,command)