Skip to content

Commit

Permalink
#510: CI: add VT_MPI_GUARD_ENABLED to build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Jun 2, 2020
1 parent aed7b05 commit bc7ea01
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ cmake -G "${CMAKE_GENERATOR:-Ninja}" \
-Dvt_pool_enabled="${VT_POOL_ENABLED:-1}" \
-DMI_INTERPOSE:BOOL=ON \
-DMI_OVERRIDE:BOOL=ON \
-Dvt_mpi_guards="${VT_MPI_GUARD_ENABLED:-0} \
-DMPI_EXTRA_FLAGS="${MPI_EXTRA_FLAGS:-}" \
-DCMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE:-Release}" \
-DMPI_C_COMPILER="${MPICC:-mpicc}" \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-18.04-clang-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ ENV VT_LB_ENABLED=${VT_LB_ENABLED} \
VT_TRACE_RUNTIME_ENABLED=${VT_TRACE_RUNTIME} \
VT_ASAN_ENABLED=${VT_ASAN_ENABLED} \
VT_POOL_ENABLED=${VT_POOL_ENABLED} \
VT_MPI_GUARD_ENABLED=${VT_MPI_GUARD_ENABLED} \
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

RUN /vt/ci/build_cpp.sh /vt /build
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-18.04-gnu-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ ENV VT_LB_ENABLED=${VT_LB_ENABLED} \
VT_TRACE_RUNTIME_ENABLED=${VT_TRACE_RUNTIME} \
VT_ASAN_ENABLED=${VT_ASAN_ENABLED} \
VT_POOL_ENABLED=${VT_POOL_ENABLED} \
VT_MPI_GUARD_ENABLED=${VT_MPI_GUARD_ENABLED} \
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

RUN /vt/ci/build_cpp.sh /vt /build
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-18.04-gnu-docs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ ENV VT_LB_ENABLED=${VT_LB_ENABLED} \
VT_TRACE_RUNTIME_ENABLED=${VT_TRACE_RUNTIME} \
VT_ASAN_ENABLED=${VT_ASAN_ENABLED} \
VT_POOL_ENABLED=${VT_POOL_ENABLED} \
VT_MPI_GUARD_ENABLED=${VT_MPI_GUARD_ENABLED} \
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

RUN /vt/ci/build_cpp.sh /vt /build "${token}"
1 change: 1 addition & 0 deletions ci/docker/ubuntu-20.04-clang-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ ENV VT_LB_ENABLED=${VT_LB_ENABLED} \
VT_TRACE_RUNTIME_ENABLED=${VT_TRACE_RUNTIME} \
VT_ASAN_ENABLED=${VT_ASAN_ENABLED} \
VT_POOL_ENABLED=${VT_POOL_ENABLED} \
VT_MPI_GUARD_ENABLED=${VT_MPI_GUARD_ENABLED} \
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

RUN /vt/ci/build_cpp.sh /vt /build
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-20.04-gnu-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ ENV VT_LB_ENABLED=${VT_LB_ENABLED} \
VT_TRACE_RUNTIME_ENABLED=${VT_TRACE_RUNTIME} \
VT_ASAN_ENABLED=${VT_ASAN_ENABLED} \
VT_POOL_ENABLED=${VT_POOL_ENABLED} \
VT_MPI_GUARD_ENABLED=${VT_MPI_GUARD_ENABLED} \
CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

RUN /vt/ci/build_cpp.sh /vt /build
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ x-vtopts: &vtopts
VT_TRACE_RUNTIME_ENABLED: ${VT_TRACE_RT:-0}
VT_ASAN_ENABLED: ${VT_ASAN:-0}
VT_POOL_ENABLED: ${VT_POOL:-1}
VT_MPI_GUARD_ENABLED: ${VT_MPI_GUARD:-0}
CMAKE_BUILD_TYPE: ${BUILD_TYPE:-release}
https_proxy: ${PROXY-}
http_proxy: ${PROXY-}
Expand Down

0 comments on commit bc7ea01

Please sign in to comment.