remove jenkins support
This commit is contained in:
parent
82188560c6
commit
0348d33439
|
@ -1,21 +0,0 @@
|
|||
pipeline{
|
||||
agent {
|
||||
docker {
|
||||
image 'golang:alpine'
|
||||
}
|
||||
}
|
||||
stages {
|
||||
stage('Test'){
|
||||
environment {
|
||||
GO111MODULE = 'on'
|
||||
GOCACHE = '/tmp/.cache'
|
||||
CGO_ENABLED = 0
|
||||
}
|
||||
steps {
|
||||
sh 'go version'
|
||||
sh 'go get -v ./...'
|
||||
sh 'go test -cover -parallel 10 -v ./... -coverprofile=coverage.out'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue