remove jenkins support

This commit is contained in:
Adrien Marquès 2019-11-18 16:18:42 +01:00
parent 60a1849cf8
commit 97de8a1f28
1 changed files with 0 additions and 21 deletions

21
build/Jenkinsfile vendored
View File

@ -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'
}
}
}
}