Skip to content

Commit

Permalink
switch to client component
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamSimpson committed Feb 17, 2018
1 parent e40262c commit 86dae44
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ target_link_libraries(cb-status ${Boost_LIBRARIES})
# Install executables
install(TARGETS builder-queue COMPONENT builder-queue DESTINATION bin OPTIONAL)
install(TARGETS builder-server COMPONENT builder-server DESTINATION bin OPTIONAL)
install(TARGETS container-builder COMPONENT container-builder DESTINATION bin OPTIONAL)
install(TARGETS cb-status COMPONENT container-builder DESTINATION bin OPTIONAL)
install(TARGETS container-builder COMPONENT client DESTINATION bin OPTIONAL)
install(TARGETS cb-status COMPONENT client DESTINATION bin OPTIONAL)

# Install scripts
install(FILES ${BUILDER_SCRIPTS}
Expand Down
5 changes: 3 additions & 2 deletions Deployment/deploy-summit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ rm -rf /boost_1_66_0
cd ${TOP_LEVEL}
rm -rf build && mkdir build && cd build
CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${SW_ROOT} ..
make container-builder cb-status
cmake -DCOMPONENT=container-builder -P cmake_install.cmake
make container-builder
make cb-status
cmake -DCOMPONENT=client -P cmake_install.cmake

# Generate a public modulefile
rm -f /sw/summit/modulefiles/core/container-builder/*
Expand Down
5 changes: 3 additions & 2 deletions Deployment/deploy-summitdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ rm -rf /boost_1_66_0
cd ${TOP_LEVEL}
rm -rf build && mkdir build && cd build
CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${SW_ROOT} ..
make container-builder cb-status
cmake -DCOMPONENT=container-builder -P cmake_install.cmake
make container-builder
make cb-status
cmake -DCOMPONENT=client -P cmake_install.cmake

# Generate a public modulefile
rm -f /sw/summitdev/modulefiles/core/container-builder/*
Expand Down
5 changes: 3 additions & 2 deletions Deployment/deploy-titan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ rm -rf /boost_1_66_0
cd ${TOP_LEVEL}
rm -rf build && mkdir build && cd build
CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${SW_ROOT} ..
make container-builder cb-status
cmake -DCOMPONENT=container-builder -P cmake_install.cmake
make container-builder
make cb-status
cmake -DCOMPONENT=client -P cmake_install.cmake

# Generate a public modulefile
rm -f /sw/xk6/modulefiles/container-builder/*
Expand Down

0 comments on commit 86dae44

Please sign in to comment.