summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Gabe Rosenhouse [Wed, 3 May 2017 17:07:29 +0000 (10:07 -0700)]
travis integration
- go build instead of go install to support cross-compile to bin dir
- shellcheck fixes for build script
Dan Williams [Wed, 26 Apr 2017 17:54:05 +0000 (12:54 -0500)]
Merge pull request #2 from dcbw/vlan
plugins: add a simple VLAN plugin
Dan Williams [Wed, 19 Apr 2017 03:06:54 +0000 (22:06 -0500)]
vlan: add VLAN plugin
Dan Williams [Wed, 19 Apr 2017 03:04:20 +0000 (22:04 -0500)]
vendor: add CNI invoke, ip, ipam, and hwaddr packages
Dan Williams [Wed, 19 Apr 2017 04:45:05 +0000 (23:45 -0500)]
test: CmdAddWithResult sets CNI_PATH from PATH
To actually use CNI plugins in the given CNI_PATH, we need to add
CNI_PATH to PATH because CmdAddWithResult() does this:
os.Setenv("CNI_PATH", os.Getenv("PATH"))
Dan Williams [Wed, 19 Apr 2017 04:39:09 +0000 (23:39 -0500)]
test: make tests actually work when packages have vendored imports
Go's "..." syntax (eg, ./plugins/...) doesn't traverse symlinks, so
go test wasn't finding the vendor/ directory for imports. To get around
that we have to specify each testable package specifically rather
than use "...".
Casey Callendrello [Mon, 13 Mar 2017 17:05:55 +0000 (18:05 +0100)]
Add simple testing infrastructure
Casey Callendrello [Mon, 13 Mar 2017 13:36:20 +0000 (14:36 +0100)]
godeps: initial creation
Casey Callendrello [Mon, 13 Mar 2017 13:31:58 +0000 (14:31 +0100)]
sample: create sample plugin
Casey Callendrello [Fri, 10 Mar 2017 15:46:52 +0000 (16:46 +0100)]
Initial commit