KnowledgeCrawler/.jenkins/jenkinsfile

25 lines
434 B
Plaintext
Raw Permalink Normal View History

2024-01-25 22:55:02 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mkdir bin'
dir('bin') {
sh '../cbuild'
}
}
}
// stage('Test') {
// steps {
// dotnetTest project: "Mixonomer.NET.sln"
// }
// }
}
post {
always {
cleanWs()
}
}
}