dnstp/.jenkins/jenkinsfile

16 lines
214 B
Plaintext
Raw Normal View History

2024-01-28 19:44:03 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'cargo build'
}
}
}
post {
always {
cleanWs()
}
}
}