rclone/vendor/storj.io/drpc/Jenkinsfile

28 lines
563 B
Plaintext
Raw Normal View History

2020-05-11 20:57:46 +02:00
pipeline {
agent {
dockerfile {
filename 'Dockerfile.jenkins'
args '-u root:root --cap-add SYS_PTRACE -v "/tmp/gomod":/go/pkg/mod'
label 'main'
}
}
stages {
stage('Download') {
steps {
checkout scm
sh 'make download'
}
}
stage('Test') {
steps {
sh 'make test'
}
}
stage('Lint') {
steps {
sh 'make lint'
}
}
}
}