Skip to content

Commit

Permalink
use system cmake on travis and in docker images; remove cmake_expand_…
Browse files Browse the repository at this point in the history
…lists
  • Loading branch information
kszucs committed Jan 29, 2019
1 parent f576c3e commit ca52b30
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion ci/conda_env_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
boost-cpp=1.68.0
brotli
bzip2
cmake
double-conversion
flatbuffers
gflags
Expand Down
1 change: 0 additions & 1 deletion ci/travis_script_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ fi
conda create -y -q -p $CONDA_ENV_DIR \
--file $TRAVIS_BUILD_DIR/ci/conda_env_python.yml \
nomkl \
cmake \
pip \
numpy=1.14 \
python=${PYTHON_VERSION} \
Expand Down
1 change: 1 addition & 0 deletions cpp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get install -y -q --no-install-recommends \
ca-certificates \
ccache \
cmake \
g++ \
gcc \
git \
Expand Down
3 changes: 1 addition & 2 deletions cpp/src/gandiva/precompiled/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ foreach(SRC_FILE ${PRECOMPILED_SRCS})
-O3 -c ${ABSOLUTE_SRC} -o ${BC_FILE}
${ARROW_GANDIVA_PC_CXX_FLAGS}
-I${CMAKE_SOURCE_DIR}/src
DEPENDS ${SRC_FILE}
COMMAND_EXPAND_LISTS)
DEPENDS ${SRC_FILE})
list(APPEND BC_FILES ${BC_FILE})
endforeach()

Expand Down

0 comments on commit ca52b30

Please sign in to comment.