multus-cni/doc/development.md
Tomofumi Hayashi 1a78cb5766 Update README.md and split into several child documents
Fix #154 and #139. Thank you @dougbtv for reviewing the docs!
2018-11-30 00:31:39 +09:00

623 B

Development Information

How to build the multus-cni?

git clone https://github.com/intel/multus-cni.git
cd multus-cni
./build

How to run CI tests?

Multus has go unit tests (based on ginkgo framework). Following commands drive CI tests manually in your environment:

sudo ./test.sh

Logging Best Practices

Followings are multus logging best practices:

  • Add logging.Debugf() at the begining of function
  • In case of error handling, use logging.Errorf() with given error info
  • logging.Panicf() only be used at very critical error (it should NOT used usually)

CI Introduction

TBD