Skip to content

Commit

Permalink
fix ci (apache#45)
Browse files Browse the repository at this point in the history
* set boost source in ci

* ci fix, docker image

* fix typo
  • Loading branch information
jikunshang authored May 15, 2020
1 parent 2738f4a commit d704a6a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions ci/docker/linux-apt-c-glib.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ RUN apt-get update -y -q && \
libgirepository1.0-dev \
libglib2.0-doc \
luarocks \
libnuma-dev \
pkg-config \
ruby-dev && \
if [ "$(lsb_release --codename --short)" = "xenial" ]; then \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-14.04-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ RUN apt-get update -y -q && \
gcc \
gdb \
git \
libnuma-dev \
libbz2-dev \
libgoogle-glog-dev \
libsnappy-dev \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-16.04-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ RUN apt-get update -y -q && \
gcc \
gdb \
git \
libnuma-dev \
libboost-all-dev \
libbrotli-dev \
libbz2-dev \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-18.04-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ ENV ARROW_BUILD_TESTS=ON \
ARROW_WITH_SNAPPY=ON \
ARROW_WITH_ZLIB=ON \
ARROW_WITH_ZSTD=ON \
BOOST_SOURCE=BUNDLED \
GTest_SOURCE=BUNDLED \
ORC_SOURCE=BUNDLED \
PARQUET_BUILD_EXECUTABLES=ON \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-18.04-r-sanitizer.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ RUN apt-get update -y -q && \
gcc \
git \
libbenchmark-dev \
libnuma-dev \
libboost-filesystem-dev \
libboost-regex-dev \
libboost-system-dev \
Expand Down
1 change: 1 addition & 0 deletions ci/docker/ubuntu-20.04-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ RUN apt-get update -y -q && \
gdb \
git \
libbenchmark-dev \
libnuma-dev \
libboost-filesystem-dev \
libboost-regex-dev \
libboost-system-dev \
Expand Down
4 changes: 2 additions & 2 deletions ci/scripts/cpp_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
pushd /tmp/vmemcache
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/
make --ignore
make install
make --ignore -j$(nproc)
make install --ignore -j$(nproc)
popd
fi

Expand Down

0 comments on commit d704a6a

Please sign in to comment.