commit | 3e48815bde751e883d060b153ac4879e46ea403e | [log] [tgz] |
---|---|---|
author | alshabib <alshabibi.ali@gmail.com> | Thu Oct 06 11:42:36 2016 -0700 |
committer | alshabib <alshabibi.ali@gmail.com> | Thu Oct 06 11:42:36 2016 -0700 |
tree | 6b815aec532f73c3f42b83252d8b463fdfe63f04 | |
parent | f8c50111c665a31c73aea35742bd39b102508469 [diff] [blame] |
adding jenkinsfile Change-Id: I23350af3716079403ad89c4435ab6da7c7d23786
diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..6a2a67e --- /dev/null +++ b/Jenkinsfile
@@ -0,0 +1,7 @@ +node ('host-master') { + 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 && ./gradlew release' +}