mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-10-22 07:52:12 +00:00
625 B
625 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 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