verify/

directory
v4.0.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 11, 2018 License: Apache-2.0, Apache-2.0

README

Verification scripts

Collection of scripts that verifies that a project meets requirements set for kubernetes related projects. The scripts are to be invoked depending on the needs via CI tooling, such as Travis CI. See main Readme file on how to integrate the repo-infra in your project.

The scripts are currently being migrated from the main kubernetes repository. If your project requires additional set of verifications, consider creating an issue/PR on repo-infra to avoid code duplication across multiple projects.

If repo-infra is integrated at the root of your project as git submodule at path: /repo-infra, then scripts can be invoked as repo-infra/verify/verify-*.sh

travis.yaml example:

dist: trusty

os:
- linux

language: go

go:
- 1.8

before_install:
- go get -u github.com/alecthomas/gometalinter

install:
- gometalinter --install

script:
- repo-infra/verify/verify-go-src.sh -v
- repo-infra/verify/verify-boilerplate.sh
# OR with vendoring 
# - vendor/github.com/kubernetes/repo-infra/verify-go-src.sh --rootdir=$(pwd) -v

Verify boilerplate

Verifies that the boilerplate for various formats (go files, Makefile, etc.) is included in each file: verify-boilerplate.sh.

Verify go source code

Runs a set of scripts on the go source code excluding vendored files: verify-go-src.sh. Expects gometalinter tooling installed (see travis file above)

With git submodule from your repo root: repo-infra/verify/verify-go-src.sh -v

With vendoring: vendor/repo-infra/verify/verify-go-src.sh -v --rootdir $(pwd)

Checks include:

  1. gofmt
  2. gometalinter
  3. govet

Directories

Path Synopsis
boilerplate

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL