feat(ci): Add Jenkinsfile as a POC
This commit is contained in:
parent
9103e7ba60
commit
397540c1b1
41
Jenkinsfile
vendored
Normal file
41
Jenkinsfile
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
pipeline {
|
||||
agent any
|
||||
tools {
|
||||
go 'go1.18.5'
|
||||
}
|
||||
stages {
|
||||
stage('Pre Test') {
|
||||
steps {
|
||||
echo 'Installing dependencies'
|
||||
sh 'go version'
|
||||
sh 'go install golang.org/x/lint/golint@latest'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Compiling and building'
|
||||
sh 'go build'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Lint') {
|
||||
steps {
|
||||
echo 'Running vetting'
|
||||
sh 'go vet ./...'
|
||||
echo 'Running linting'
|
||||
sh 'golint ./...'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Unit-Test') {
|
||||
steps {
|
||||
echo 'Run All unit test'
|
||||
sh 'go test -cover ./...'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
post {
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user