mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-23 08:14:35 +01:00
42 lines
812 B
Markdown
42 lines
812 B
Markdown
# Prerequisites
|
|
|
|
`virtcontainers` has a few prerequisites for development:
|
|
|
|
- CNI
|
|
- golang
|
|
|
|
# Building
|
|
|
|
To build `virtcontainers`, at the top level directory run:
|
|
|
|
```bash
|
|
# make
|
|
```
|
|
|
|
# Testing
|
|
|
|
Before testing `virtcontainers`, ensure you have met the [prerequisites](#prerequisites).
|
|
|
|
Before testing you need to install virtcontainers. The following command will install
|
|
`virtcontainers` into its own area (`/usr/bin/virtcontainers/bin/` by default).
|
|
|
|
```
|
|
# sudo -E PATH=$PATH make install
|
|
```
|
|
|
|
To test `virtcontainers`, at the top level run:
|
|
|
|
```
|
|
# make check
|
|
```
|
|
|
|
This will:
|
|
|
|
- run static code checks on the code base.
|
|
- run `go test` unit tests from the code base.
|
|
|
|
# Submitting changes
|
|
|
|
For details on the format and how to submit changes, refer to the
|
|
[Contributing](../../../../CONTRIBUTING.md) document.
|