Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 627 Bytes

development.md

File metadata and controls

30 lines (19 loc) · 627 Bytes

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).The following commands drive CI tests manually in your environment:

sudo ./test.sh

Logging Best Practices

Following are multus logging best practices:

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

CI Introduction

TBD