mirror of https://github.com/milvus-io/milvus.git
MS-590 Refine cmake code to support cpplint
Former-commit-id: 352431bc44645574c96d28b5c46966ed85a69288pull/191/head
parent
45c56900c7
commit
2e26d28a12
|
@ -30,6 +30,7 @@ Please mark all change in change log and use the ticket from JIRA.
|
||||||
- MS-569 - Complete the NOTICE.md
|
- MS-569 - Complete the NOTICE.md
|
||||||
- MS-575 - Add Clang-format & Clang-tidy & Cpplint
|
- MS-575 - Add Clang-format & Clang-tidy & Cpplint
|
||||||
- MS-586 - Remove BUILD_FAISS_WITH_MKL option
|
- MS-586 - Remove BUILD_FAISS_WITH_MKL option
|
||||||
|
- MS-590 - Refine cmake code to support cpplint
|
||||||
|
|
||||||
# Milvus 0.4.0 (2019-09-12)
|
# Milvus 0.4.0 (2019-09-12)
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ Keep up-to-date with newest releases and latest updates by reading [Releases](ht
|
||||||
The data is stored and computed on a distributed architecture. This lets you scale data sizes up and down without redesigning the system.
|
The data is stored and computed on a distributed architecture. This lets you scale data sizes up and down without redesigning the system.
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||

|

|
||||||
|
|
||||||
## Get started
|
## Get started
|
||||||
|
|
||||||
|
@ -44,10 +44,12 @@ Use Docker to install Milvus is a breeze. See the [Milvus install guide](https:/
|
||||||
```shell
|
```shell
|
||||||
# Install tools
|
# Install tools
|
||||||
Centos7 :
|
Centos7 :
|
||||||
$ yum install gfortran qt4 flex bison mysql-devel mysql
|
$ yum install gfortran qt4 flex bison
|
||||||
|
$ yum install mysql-devel mysql
|
||||||
|
|
||||||
Ubuntu16.04 :
|
Ubuntu16.04 :
|
||||||
$ sudo apt-get install gfortran qt4-qmake flex bison libmysqlclient-dev mysql-client
|
$ sudo apt-get install gfortran qt4-qmake flex bison
|
||||||
|
$ sudo apt-get install libmysqlclient-dev mysql-client
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -96,12 +98,21 @@ please reinstall CMake with curl:
|
||||||
$ sudo make install
|
$ sudo make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### code format and linting
|
||||||
|
|
||||||
|
```shell
|
||||||
|
CentOS 7:
|
||||||
|
$ yum install clang
|
||||||
|
Ubuntu 16.04:
|
||||||
|
$ sudo apt-get install clang-format clang-tidy
|
||||||
|
|
||||||
|
$ ./build.sh -l
|
||||||
|
```
|
||||||
|
|
||||||
##### Run unit test
|
##### Run unit test
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ ./build.sh -u
|
$ ./build.sh -u
|
||||||
or
|
|
||||||
$ ./build.sh --unittest
|
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Run code coverage
|
##### Run code coverage
|
||||||
|
|
Loading…
Reference in New Issue