adding jenkinsfile

This commit is contained in:
Andy Pack 2024-01-25 22:55:02 +00:00
parent 70855d50e7
commit c1e7188504
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

25
.jenkins/jenkinsfile Normal file
View File

@ -0,0 +1,25 @@
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()
}
}
}