Commit c1272d70 authored by Jehandad Khan's avatar Jehandad Khan
Browse files

Fix client app install

parent 3704eacd
...@@ -247,10 +247,10 @@ pipeline { ...@@ -247,10 +247,10 @@ pipeline {
agent{ label rocmnode("gfx908")} agent{ label rocmnode("gfx908")}
environment{ environment{
setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx908 -O3 " -DBUILD_DEV=On """ setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx908 -O3 " -DBUILD_DEV=On """
execute_args = """ cd test/client_app && mkdir build && cd build && cmake -DCMAKE_PREFIX_PATH="/opt/rocm" .. && make """ execute_args = """ cd test/client_app && mkdir build && cd build && cmake -DCMAKE_PREFIX_PATH="../../../install;/opt/rocm" .. && make """
} }
steps{ steps{
buildHipClangJobAndReboot(setup_args: setup_args, config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local') buildHipClangJobAndReboot(setup_args: setup_args, build_install: true, no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local')
} }
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment