Skip to content

Commit

Permalink
#2174: disable trace_only build on vttv pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Jul 16, 2024
1 parent 82e073b commit 4835965
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/azure/azure-gcc-12-ubuntu-vttv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ variables:
VT_LB: 1
VT_TRACE: 0
VT_TRACE_RT: 0
VT_TRACE_ONLY: 1
VT_TRACE_ONLY: 0
VT_MIMALLOC: 0
VT_DOCS: 0
VT_ASAN: 0
Expand Down
2 changes: 1 addition & 1 deletion cmake/load_local_packages.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else()

set(MAGISTRATE_LIBRARY vt::lib::magistrate)

if (EXISTS "${PROJECT_LIB_DIR}/vt-tv" AND vt_tv_enabled)
if (EXISTS "${PROJECT_LIB_DIR}/vt-tv" AND vt_tv_enabled AND NOT vt_trace_only)
set(vt_tv_python_bindings_enabled OFF)
add_subdirectory(${PROJECT_LIB_DIR}/vt-tv)
set(TV_LIBRARY vt::lib::vt-tv)
Expand Down
1 change: 1 addition & 0 deletions scripts/workflows-azure.ini
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,5 @@ compiler = gcc-12
distro = 22.04
output_name = ci/azure/azure-gcc-12-ubuntu-vttv.yml
vt_tv_enabled = 1
vt_trace_only = 0
pr_pattern = "pr:\\n drafts: true\\n autoCancel: true\\n branches:\\n include:\\n - '*'\\n"

0 comments on commit 4835965

Please sign in to comment.