-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building tiflash using centos7 for official release #343
Merged
marsishandsome
merged 4 commits into
pingcap:master
from
marsishandsome:feature/centos7
Dec 19, 2019
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
FROM hub.pingcap.net/jenkins/centos7_golang-1.12 | ||
|
||
USER root | ||
WORKDIR /root/ | ||
|
||
ENV HOME /root/ | ||
|
||
COPY prepare-environments /prepare-environments | ||
|
||
RUN yum makecache \ | ||
&& yum install -y \ | ||
ccache \ | ||
devscripts \ | ||
fakeroot \ | ||
debhelper \ | ||
libtool \ | ||
ncurses-static \ | ||
readline-devel \ | ||
unixODBC-devel \ | ||
openssl-devel \ | ||
libicu-devel \ | ||
libtool-ltdl-devel \ | ||
python3-devel \ | ||
&& curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-toolchain nightly \ | ||
&& pip3 install \ | ||
pybind11 \ | ||
pyinstaller \ | ||
dnspython \ | ||
uri \ | ||
requests \ | ||
urllib3 \ | ||
toml \ | ||
setuptools \ | ||
&& cd /prepare-environments \ | ||
&& ./install-openssl.sh \ | ||
&& ./install-mysql-dev.sh \ | ||
&& ./install-cmake.sh \ | ||
&& ./install-gcc.sh \ | ||
&& ./install-clang.sh \ | ||
&& ./install-grpc.sh \ | ||
&& yum clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM centos:centos7.7.1908 | ||
|
||
USER root | ||
WORKDIR /root/ | ||
|
||
ENV HOME /root/ | ||
ENV TZ Asia/Shanghai | ||
ENV LD_LIBRARY_PATH /tiflash | ||
|
||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
COPY tiflash /tiflash | ||
|
||
ENTRYPOINT ["/tiflash/theflash", "server"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
build_release: | ||
docker run --rm -v $(realpath ..):/tics hub.pingcap.net/tiflash/tiflash-builder /tics/release-centos7/build/build-release.sh | ||
|
||
image_builder: | ||
docker build -f Dockerfile-builder -t hub.pingcap.net/tiflash/tiflash-builder . | ||
|
||
push_image_builder: | ||
docker push hub.pingcap.net/tiflash/tiflash-builder | ||
|
||
image_tiflash: | ||
docker build -f Dockerfile-tiflash -t hub.pingcap.net/tiflash/tiflash-server . | ||
|
||
push_image_tiflash: | ||
docker push hub.pingcap.net/tiflash/tiflash-server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
set -ueo pipefail | ||
|
||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" | ||
SRCPATH=${1:-$(cd $SCRIPTPATH/../..; pwd -P)} | ||
|
||
cd $SRCPATH/cluster_manage | ||
./release.sh | ||
cp -r dist/flash_cluster_manager/ /flash_cluster_manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" | ||
|
||
$SCRIPTPATH/build-tiflash-proxy.sh | ||
$SCRIPTPATH/build-cluster-manager.sh | ||
$SCRIPTPATH/build-tiflash.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
set -ueo pipefail | ||
|
||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" | ||
SRCPATH=${1:-$(cd $SCRIPTPATH/../..; pwd -P)} | ||
PATH=$PATH:/root/.cargo/bin | ||
|
||
cd / && mkdir libtiflash-proxy | ||
git clone -b tiflash-proxy-lib https://github.com/solotzg/tikv.git tiflash-proxy | ||
cd /tiflash-proxy && make release | ||
cp target/release/libtiflash_proxy.so /libtiflash-proxy | ||
rm -rf /tiflash-proxy | ||
|
||
# rustup self uninstall -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/bash | ||
|
||
set -ueo pipefail | ||
|
||
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" | ||
SRCPATH=${1:-$(cd $SCRIPTPATH/../..; pwd -P)} | ||
NPROC=${NPROC:-$(nproc || grep -c ^processor /proc/cpuinfo)} | ||
CMAKE_BUILD_TYPE="RELWITHDEBINFO" | ||
ENABLE_EMBEDDED_COMPILER="FALSE" | ||
|
||
install_dir="$SRCPATH/release-centos7/tiflash" | ||
if [ -d "$install_dir" ]; then rm -rf "$install_dir"/*; else mkdir -p "$install_dir"; fi | ||
|
||
cp -r /flash_cluster_manager "$install_dir" | ||
|
||
if [ -d "$SRCPATH/contrib/kvproto" ]; then | ||
cd "$SRCPATH/contrib/kvproto" | ||
rm -rf cpp/kvproto | ||
./generate_cpp.sh | ||
cd - | ||
fi | ||
|
||
if [ -d "$SRCPATH/contrib/tipb" ]; then | ||
cd "$SRCPATH/contrib/tipb" | ||
rm -rf cpp/tipb | ||
./generate-cpp.sh | ||
cd - | ||
fi | ||
|
||
rm -rf ${SRCPATH}/libs/libtiflash-proxy | ||
ln -s /libtiflash-proxy ${SRCPATH}/libs/libtiflash-proxy | ||
|
||
build_dir="$SRCPATH/release-centos7/build-release" | ||
rm -rf $build_dir && mkdir -p $build_dir && cd $build_dir | ||
|
||
cmake "$SRCPATH" \ | ||
-DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE \ | ||
-DENABLE_EMBEDDED_COMPILER=$ENABLE_EMBEDDED_COMPILER \ | ||
-Wno-dev | ||
|
||
make -j $NPROC | ||
|
||
cp -f "$build_dir/dbms/src/Server/theflash" "$install_dir/theflash" | ||
|
||
ldd "$build_dir/dbms/src/Server/theflash" | grep '/' | grep '=>' | \ | ||
awk -F '=>' '{print $2}' | awk '{print $1}' | while read lib; do | ||
cp -f "$lib" "$install_dir" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
marsishandsome marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
BRANCH="tags/RELEASE_500/final" | ||
THREADS=$(nproc || grep -c ^processor /proc/cpuinfo) | ||
|
||
yum install -y subversion | ||
|
||
cd ~ | ||
mkdir llvm | ||
cd llvm | ||
svn co "http://llvm.org/svn/llvm-project/llvm/${BRANCH}" llvm | ||
|
||
cd llvm/tools | ||
svn co "http://llvm.org/svn/llvm-project/cfe/${BRANCH}" clang | ||
svn co "http://llvm.org/svn/llvm-project/lld/${BRANCH}" lld | ||
svn co "http://llvm.org/svn/llvm-project/polly/${BRANCH}" polly | ||
|
||
cd clang/tools | ||
svn co "http://llvm.org/svn/llvm-project/clang-tools-extra/${BRANCH}" extra | ||
|
||
cd ../../../.. | ||
cd llvm/projects/ | ||
svn co "http://llvm.org/svn/llvm-project/compiler-rt/${BRANCH}" compiler-rt | ||
svn co "http://llvm.org/svn/llvm-project/libcxx/${BRANCH}" libcxx | ||
svn co "http://llvm.org/svn/llvm-project/libcxxabi/${BRANCH}" libcxxabi | ||
|
||
cd ../.. | ||
mkdir build | ||
cd build/ | ||
cmake -D CMAKE_BUILD_TYPE:STRING=Release ../llvm | ||
make -j $THREADS | ||
make install | ||
|
||
yum remove -y subversion | ||
rm -rf ~/llvm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
VERSION="3.10" | ||
COMPLETE_VERSION="3.10.2" | ||
|
||
cd ~ | ||
wget "https://cmake.org/files/v${VERSION}/cmake-${COMPLETE_VERSION}-Linux-x86_64.tar.gz" | ||
tar zxvf cmake-${COMPLETE_VERSION}-Linux-x86_64.tar.gz | ||
|
||
rm cmake-${COMPLETE_VERSION}-Linux-x86_64.tar.gz | ||
yum remove cmake -y | ||
|
||
ln -sf ~/cmake-${COMPLETE_VERSION}-Linux-x86_64/bin/ccmake /usr/bin/ccmake | ||
ln -sf ~/cmake-${COMPLETE_VERSION}-Linux-x86_64/bin/cmake /usr/bin/cmake | ||
ln -sf ~/cmake-${COMPLETE_VERSION}-Linux-x86_64/bin/cmake-gui /usr/bin/cmake-gui | ||
ln -sf ~/cmake-${COMPLETE_VERSION}-Linux-x86_64/bin/cpack /usr/bin/cpack | ||
ln -sf ~/cmake-${COMPLETE_VERSION}-Linux-x86_64/bin/ctest /usr/bin/ctest | ||
|
||
cmake --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
VERSION="gcc-7.4.0" | ||
THREADS=$(nproc || grep -c ^processor /proc/cpuinfo) | ||
|
||
cd ~ | ||
mkdir gcc | ||
cd gcc | ||
wget https://mirrors.ustc.edu.cn/gnu/gcc/${VERSION}/${VERSION}.tar.gz | ||
tar xf "${VERSION}.tar.gz" | ||
rm "${VERSION}.tar.gz" | ||
|
||
cd ${VERSION} | ||
./contrib/download_prerequisites | ||
mkdir gccbuild | ||
cd gccbuild | ||
../configure --enable-languages=c,c++ --disable-multilib | ||
make -j $THREADS | ||
make install | ||
ln -s /usr/local/bin/gcc /usr/local/bin/cc | ||
|
||
yum remove -y gcc | ||
|
||
echo "/usr/local/lib64" | tee /etc/ld.so.conf.d/10_local-lib64.conf | ||
gcc --version | ||
|
||
rm -rf ~/gcc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
VERSION="v1.14.2" | ||
THREADS=$(nproc || grep -c ^processor /proc/cpuinfo) | ||
|
||
cd ~ | ||
git clone https://github.com/grpc/grpc.git | ||
cd grpc | ||
git checkout ${VERSION} | ||
git submodule update --init | ||
|
||
cd ~/grpc | ||
mkdir .build | ||
cd .build | ||
cmake .. -DgRPC_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release | ||
make install -j $THREADS | ||
|
||
|
||
cd ~/grpc | ||
rm -rf .build | ||
mkdir .build | ||
cd .build | ||
cmake .. -DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF -DgRPC_PROTOBUF_PROVIDER=package -DgRPC_ZLIB_PROVIDER=package -DgRPC_CARES_PROVIDER=package -DgRPC_SSL_PROVIDER=package -DCMAKE_BUILD_TYPE=Release | ||
make install -j $THREADS | ||
|
||
protoc --version | ||
|
||
rm -rf ~/grpc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
cd ~ | ||
mkdir mysql | ||
cd mysql | ||
|
||
wget http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm | ||
yum -y --nogpgcheck install mysql57-community-release-el7-9.noarch.rpm | ||
|
||
yum -y install mysql-community-devel | ||
ln -s /usr/lib64/mysql/libmysqlclient.a /usr/lib64/libmysqlclient.a | ||
|
||
yum clean all | ||
rm -rf ~/mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
curl -s https://packagecloud.io/install/repositories/altinity/clickhouse/script.rpm.sh | bash | ||
yum install -y openssl-altinity-devel openssl-altinity-static | ||
yum remove -y openssl-static openssl-devel | ||
|
||
# openssl-static | ||
ln -sf /opt/openssl-1.1.0f/lib/libcrypto.a /usr/lib64/libcrypto.a | ||
ln -sf /opt/openssl-1.1.0f/lib/libssl.a /usr/lib64/libssl.a | ||
|
||
# openssl-devel | ||
ln -sf /opt/openssl-1.1.0f/include/openssl /usr/include/openssl | ||
ln -sf /opt/openssl-1.1.0f/lib/libcrypto.so /usr/lib64/libcrypto.so | ||
ln -sf /opt/openssl-1.1.0f/lib/libssl.so /usr/lib64/libssl.so | ||
ln -sf /opt/openssl-1.1.0f/lib/pkgconfig/libcrypto.pc /usr/lib64/pkgconfig/libcrypto.pc | ||
ln -sf /opt/openssl-1.1.0f/lib/pkgconfig/libssl.pc /usr/lib64/pkgconfig/libssl.pc | ||
ln -sf /opt/openssl-1.1.0f/lib/pkgconfig/openssl.pc /usr/lib64/pkgconfig/openssl.pc |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Auto gen .so list
vsHand-picked list
:Auto gen
may cp too many .so, which cause other version-conflicting problems, it happened beforeThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did this before in publish.sh, you may have a look at that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this script is only for building a release package, too many
.so
is ok.the ansible script will decide which
.so
will be deployed.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK then