This commit is contained in:
sekhar0987 2025-05-27 10:37:27 +00:00 committed by GitHub
commit 8155902fa6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

15
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage ("Build") {
steps {
sh"./mvwn install"
}
}
}
}