Note:
- If you just want to experience the deployment and basic functions of CURVE, you do not need to compile CURVE, please refer to deployment.
- This document is only used to help you build the CURVE code compilation environment, which is convenient for you to participate in the development, debugging and run tests of CURVE.
Method 1: Pull the docker image from the docker hub image library (recommended)
docker pull opencurvedocker/curve-base:build-debian9
Method 2: Build docker image manually
Use the Dockerfile in the project directory to build. The command is as follows:
docker build -t opencurvedocker/curve-base:build-debian9.
Note: The above operations are not recommended to be performed in the CURVE project directory, otherwise the files in the current directory will be copied to the docker image when building the image. It is recommended to copy the Dockerfile to the newly created clean directory to build the docker image.
docker run -it opencurvedocker/curve-base:build-debian9 /bin/bash
cd <workspace>
git clone https://github.com/opencurve/curve.git or git clone https://gitee.com/mirrors/curve.git
# (Optional step) Replace external dependencies with domestic download points or mirror warehouses, which can speed up compilation: bash replace-curve-repo.sh
# before curve v2.0
bash mk-tar.sh (compile curvebs and make tar package)
bash mk-deb.sh (compile curvebs and make debian package)
# after curve v2.0
compile curvebs: cd curve && make build stor=bs dep=1
compile curvefs: cd curve && make build stor=fs dep=1
CURVE compilation depends on:
Dependency | Version |
---|---|
bazel | 4.2.2 |
gcc | Compatible version supporting C++11 |
Other dependencies of CURVE are managed by bazel and do not need to be installed separately.
For dependencies, you can refer to the installation steps in dockerfile.
git clone https://github.com/opencurve/curve.git or git clone https://gitee.com/mirrors/curve.git
# (Optional step) Replace external dependencies with domestic download points or mirror warehouses, which can speed up compilation: bash replace-curve-repo.sh
# before curve v2.0
bash mk-tar.sh (compile curvebs and make tar package)
bash mk-deb.sh (compile curvebs and make debian package)
# after curve v2.0
compile curvebs: cd curve && make build stor=bs dep=1
compile curvefs: cd curve && make build stor=fs dep=1
Only compile all modules without packaging
$ bash ./build.sh
Compile corresponding modules, such as common-test in the test/common
directory
$ bazel build test/common:common-test --copt -DHAVE_ZLIB=1 \
$ --define=with_glog=true --compilation_mode=dbg \
$ --define=libunwind=true
Before executing the test, you need to prepare the dependencies required for the test case to run:
$ export LD_LIBRARY_PATH=<CURVE-WORKSPACE>/thirdparties/etcdclient:<CURVE-WORKSPACE>/thirdparties/aws-sdk/usr/lib:/usr/local/lib:${LD_LIBRARY_PATH}
In the snapshot clone integration test, the open source fake-s3 was used to simulate the real s3 service.
$ apt install ruby -y OR yum install ruby -y
$ gem install fakes3
$ fakes3 -r /S3_DATA_DIR -p 9999 --license YOUR_LICENSE_KEY
Remarks:
-r S3_DATA_DIR
: The directory where data is stored--license YOUR_LICENSE_KEY
: fakes3 needs a key to run, please refer to fake-s3-p 9999
: The port where the fake-s3 service starts, no need to change
$ wget -ct0 https://github.com/etcd-io/etcd/releases/download/v3.4.10/$ etcd-v3.4.10-linux-amd64.tar.gz
$ tar zxvf etcd-v3.4.10-linux-amd64. tar.gz
$ cd etcd-v3.4.10-linux-amd64 && cp etcd etcdctl /usr/bin
$ ./bazel-bin/test/common/common-test
The executable programs compiled by bazel are all in the ./bazel-bin
directory, for example, the test program corresponding to the test code in the test/common directory is ./bazel-bin/test/common/common-test
, this program can be run directly for testing.
- CurveBS-related unit test program directory is under the
./bazel-bin/test
directory - CurveFS-related unit test program directory is under the
./bazel-bin/curvefs/test
directory - The integration test is under the
./bazel-bin/test/integration
directory - NEBD-related unit test programs are in the
./bazel-bin/nebd/test
directory - NBD-related unit test programs are in the
./bazel-bin/nbd/test
directory
If you want to run all unit tests and integration tests, you can execute the ut.sh script in the project directory:
$ bash ut.sh