Skip to content
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

rename theflash #407

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion release-centos7/Dockerfile-tiflash-centos7
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

COPY tiflash /tiflash

ENTRYPOINT ["/tiflash/theflash", "server"]
ENTRYPOINT ["/tiflash/tiflash", "server"]
2 changes: 1 addition & 1 deletion release-centos7/Dockerfile-tiflash-ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

COPY tiflash /tiflash

ENTRYPOINT ["/tiflash/theflash", "server"]
ENTRYPOINT ["/tiflash/tiflash", "server"]
2 changes: 1 addition & 1 deletion release-centos7/build/build-tiflash-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ cmake "$SRCPATH" \
-DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE
make -j $NPROC

cp -f "$build_dir/dbms/src/Server/theflash" "$install_dir/theflash"
cp -f "$build_dir/dbms/src/Server/theflash" "$install_dir/tiflash"
cp -f "${SRCPATH}/libs/libtiflash-proxy/libtiflash_proxy.so" "$install_dir/libtiflash_proxy.so"

# copy gtest binary under Debug mode
Expand Down
2 changes: 1 addition & 1 deletion release-centos7/build/build-tiflash-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ cmake "$SRCPATH" \

make -j $NPROC

cp -f "$build_dir/dbms/src/Server/theflash" "$install_dir/theflash"
cp -f "$build_dir/dbms/src/Server/theflash" "$install_dir/tiflash"
cp -f "${SRCPATH}/libs/libtiflash-proxy/libtiflash_proxy.so" "$install_dir/libtiflash_proxy.so"
2 changes: 1 addition & 1 deletion tests/docker/_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
export build_dir="/tiflash"

# Executable path
export storage_bin="$build_dir/theflash"
export storage_bin="$build_dir/tiflash"

# Server address for connecting
export storage_server="127.0.0.1"
Expand Down