build: some small improvements; bump to go1.10

- bump to go 1.10
- Add a linker tag with the build version
- Remove fastbuild, go builds are cached now
- Use better ginkgo suite names
This commit is contained in:
Casey Callendrello
2018-04-12 14:01:10 +02:00
parent e4f13535ab
commit aade7b93ee
27 changed files with 35 additions and 46 deletions

View File

@@ -36,7 +36,7 @@ import (
func TestTBF(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "bandwidth suite")
RunSpecs(t, "plugins/meta/bandwidth")
}
var echoServerBinaryPath string

View File

@@ -22,5 +22,5 @@ import (
func TestFlannel(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Flannel Suite")
RunSpecs(t, "plugins/meta/flannel")
}

View File

@@ -37,7 +37,7 @@ func TestPortmap(t *testing.T) {
rand.Seed(config.GinkgoConfig.RandomSeed)
RegisterFailHandler(Fail)
RunSpecs(t, "portmap Suite")
RunSpecs(t, "plugins/meta/portmap")
}
var echoServerBinaryPath string

View File

@@ -23,5 +23,5 @@ import (
func TestTuning(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "tuning Suite")
RunSpecs(t, "plugins/meta/tuning")
}