adding jenkinsfile
This commit is contained in:
parent
70855d50e7
commit
c1e7188504
25
.jenkins/jenkinsfile
Normal file
25
.jenkins/jenkinsfile
Normal 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()
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user