Skip to content

Commit

Permalink
[VL] Update ubuntu docker to use cmake 3.28 (#6373)
Browse files Browse the repository at this point in the history
Since the velox needs cmake version > 3.28, we better update the doc to align this change
  • Loading branch information
boneanxs authored Jul 9, 2024
1 parent 0ec4b16 commit e58bef3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/developers/docker_ubuntu22.04.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ apt-get update
#install gcc and libraries to build arrow
apt install software-properties-common
apt install maven build-essential cmake libssl-dev libre2-dev libcurl4-openssl-dev clang lldb lld libz-dev git ninja-build uuid-dev autoconf-archive curl zip unzip tar pkg-config bison libtool flex vim
apt install maven build-essential libssl-dev libre2-dev libcurl4-openssl-dev clang lldb lld libz-dev git ninja-build uuid-dev autoconf-archive curl zip unzip tar pkg-config bison libtool flex vim python3-pip
pip3 install cmake==3.28.3
#velox script needs sudo to install dependency libraries
apt install sudo
Expand Down Expand Up @@ -57,4 +58,8 @@ cd incubator-gluten/
# It's suggested to build using static link, enabled by `--enable_vcpkg=ON`
# For developer, it's suggested to enable Debug info, by --build_type=RelWithDebInfo. Note RelWithDebInfo uses -o2, release uses -o3
./dev/buildbundle-veloxbe.sh --enable_vcpkg=ON --build_type=RelWithDebInfo
# If you meet the error like `epoll_wait: Function not implemented` when running tests,
# Please enable epoll_pwait by,
export EVENT_NOEPOLL=1
```

0 comments on commit e58bef3

Please sign in to comment.