-
Install MSYS2 & build libgit (needed only for the first time)
build.bat all
Note
You can install MSYS2 separately by runningbuild.bat install
and build libgit2 separately by runningbuild.bat build
-
Build kubescape
make build
OR
go build -tags=static .
-
Install libgit2 dependency (needed only for the first time)
make libgit2
Note
cmake
is required to build libgit2. You can install it by runningsudo apt-get install cmake
(Linux) orbrew install cmake
(macOS).
-
Build kubescape
make build
OR
go build -tags=static .
-
Test
make test
We have created a Killercoda scenario that you can use to experiment building Kubescape from source.
When you start the scenario, a script will clone the Kubescape repository and execute a Linux build steps. The entire process executes multiple commands in order: it takes around 5-6 minutes to complete.
How to use the build playground:
- Apply changes you wish to make to the Kubescape source code.
- Perform a Linux build
- Now, you can use Kubescape like normal, but instead of using
kubescape
, use./kubescape
.
You can use the sample files below to setup your VS Code environment for building and debugging purposes.
.vscode/settings.json
:
// .vscode/settings.json
{
"go.testTags": "static",
"go.buildTags": "static",
"go.toolsEnvVars": {
"CGO_ENABLED": "1"
}
}
.vscode/launch.json
:
// .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [
"scan",
"--logger",
"debug"
],
"buildFlags": "-tags=static"
}
]
}