
This adds Zuul configuration for CI gates and Ansible playbooks describing the tasks those gates should perform. It also adds a Dockerfile and several related Makefile targets to create a repeatable environment for both developers and CI gates. Change-Id: Icb4541dc1fd9d80c706c9bdc6fad12c049af809b
9 lines
173 B
Go
9 lines
173 B
Go
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
// These imports are all tools used in the building and testing process
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|