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

README.md: Rename tics to tiflash. #4296

Merged
merged 5 commits into from
Mar 16, 2022
Merged
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Assume `$WORKSPACE` to be the directory under which the TiFlash repo is placed.

```bash
cd $WORKSPACE
git clone --recursive https://github.com/pingcap/tics.git
git clone --recursive https://github.com/pingcap/tiflash.git
```

### Prerequisites
Expand Down Expand Up @@ -56,7 +56,7 @@ Or you can also use system-wise toolchain if you can install `clang/compiler-rt/
TiFlash Env can be created with the following commands (`docker` and `tar xz` are needed):

```bash
cd $WORKSPACE/tics/release-centos7-llvm/env
cd $WORKSPACE/tiflash/release-centos7-llvm/env
make tiflash-env-$(uname -m).tar.xz
```

Expand Down Expand Up @@ -126,15 +126,15 @@ For Ninja:

```bash
cd $BUILD
cmake $WORKSPACE/tics -Gninja
cmake $WORKSPACE/tiflash -Gninja
ninja tiflash
```

For GNU Make:

```bash
cd $BUILD
cmake $WORKSPACE/tics
cmake $WORKSPACE/tiflash
make tiflash -j
```

Expand Down Expand Up @@ -247,6 +247,6 @@ Before submitting a pull request, please use [format-diff.py](format-diff.py) to
> **NOTE**: It is required to use clang-format 12.0.0+.

```
cd $WORKSPACE/tics
cd $WORKSPACE/tiflash
python3 format-diff.py --diff_from `git merge-base ${TARGET_REMOTE_BRANCH} HEAD`
```