Skip to content

Commit

Permalink
#2174: rework vt_tv_enabled logic
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly authored and cz4rs committed Sep 20, 2024
1 parent c6db186 commit 427be70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 1 addition & 5 deletions ci/docker/ubuntu-gnu-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,8 @@ RUN ./cmake.sh 3.23.4 ${arch}
ENV PATH=/cmake/bin/:$PATH
ENV LESSCHARSET=utf-8

ARG VT_TV_ENABLED

RUN echo "VT_TV_ENABLED is set to: $VT_TV_ENABLED"

COPY ./ci/deps/vtk.sh vtk.sh
RUN if [ "$VT_TV_ENABLED" ]; then \
RUN if test ${vt_tv_enabled} -eq 1; then \
chmod +x vtk.sh && \
./vtk.sh 9.3.0 /vtk-build -j4; \
fi
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ services:
host_compiler: ${HOST_COMPILER}
ubuntu: ${UBUNTU}
ubsan_enabled: ${VT_UBSAN:-0}
vt_tv_enabled: ${VT_TV_ENABLED:-0}
zoltan_enabled: ${VT_ZOLTAN:-0}
external_fmt: ${VT_EXTERNAL_FMT:-0}
cache_from:
Expand Down

0 comments on commit 427be70

Please sign in to comment.