go-http-peering/Jenkinsfile

38 lines
671 B
Plaintext
Raw Normal View History

2022-09-05 14:40:36 +02:00
@Library('cadoles') _
2022-09-05 10:56:41 +02:00
pipeline {
agent {
dockerfile {
filename 'Dockerfile'
dir 'misc/ci'
}
}
stages {
2022-09-05 12:40:58 +02:00
stage('Lint') {
steps {
script {
catchError(buildResult: 'UNSTABLE', stageResult: 'FAILURE') {
sh 'make lint'
}
}
}
}
stage('Test') {
steps {
script {
sh 'make test'
}
}
}
2022-09-05 10:56:41 +02:00
}
post {
always {
script {
cleanWs()
}
}
}
}