Make it so Jenkins can actually build
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit
Some checks failed
timw4mail/gilo/pipeline/head There was a failure building this commit
This commit is contained in:
parent
538bc79cad
commit
d251362776
56
Jenkinsfile
vendored
56
Jenkinsfile
vendored
@ -1,25 +1,33 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'golang:latest'
|
||||
args '--privileged'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
GO114MODULE = 'on'
|
||||
CGO_ENABLED = 0
|
||||
GOPATH = "${JENKINS_HOME}/workspace/${JOB_NAME}/builds/${BUILD_ID}"
|
||||
}
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh "go build"
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh "go test ./... -v"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
agent any
|
||||
tools {
|
||||
go 'go1.16'
|
||||
}
|
||||
environment {
|
||||
GO114MODULE = 'on'
|
||||
CGO_ENABLED = 0
|
||||
GOPATH = "${JENKINS_HOME}/jobs/${JOB_NAME}/builds/${BUILD_ID}"
|
||||
}
|
||||
stages {
|
||||
stage('Pre Test') {
|
||||
steps {
|
||||
echo 'Installing dependencies'
|
||||
sh 'go version'
|
||||
sh 'go get -u golang.org/x/lint/golint'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Compiling and building'
|
||||
sh 'go build'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh "go test ./... -v"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user