Create jenkinsfile

This commit is contained in:
tmaheedhar2 2020-05-05 07:54:38 +05:30 committed by GitHub
parent adab01ef62
commit 94beb87d39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
jenkinsfile Normal file
View file

@ -0,0 +1,20 @@
node {
stage('SCM') {
// git clone
git 'https://github.com/openmrs/openmrs-core.git'
}
stage ('build the packages') {
// mvn package
sh 'mvn package'
}
//stage ('archival') {
// archiving artifacts
//archive 'target/*.jar'
//}
}