changing Jenkinsfile node from master to ubuntu instance
Change-Id: I69db4436f9b4c72c9374dfe0112ed999815e5636
diff --git a/Jenkinsfile b/Jenkinsfile
index def6860..3d3f527 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,7 +1,7 @@
-node ('master') {
+node ('ubuntu16.04-basebuild-1c-2g') {
stage 'Checkout code'
checkout([$class: 'RepoScm', currentBranch: true, manifestRepositoryUrl: 'https://gerrit.opencord.org/manifest', quiet: true])
-
+
stage 'Build and Publish apps'
sh 'cd onos-apps/apps && mvn clean deploy'
}