Skip to content

Commit

Permalink
adding jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarsoo committed Jan 25, 2024
1 parent 70855d5 commit c1e7188
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .jenkins/jenkinsfile
Original file line number Diff line number Diff line change
@@ -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()
}
}
}

0 comments on commit c1e7188

Please sign in to comment.