↧
Answer by simbo1905 for How to use Jenkins to manage a repository from Github...
It is a convenience that Jenkins will pull from git for you. With such a complex setup as needing to pull from two repos you can simply use a pipeline job that runs "sh" to explicitly git checkout the...
View ArticleAnswer by John Fisher for How to use Jenkins to manage a repository from...
Assuming you are populating a tree of files to do a build, and some files come from Git and some from BitBucket, here are a few suggestions:-Use two Jenkins jobs, one triggered by another-Use a script...
View ArticleHow to use Jenkins to manage a repository from Github with a submodule from...
For my Jenkins build, I need to manage a Github repository to automate building a project. However, the issue is that this repository needs to pull a submodule from Bitbucket. This requires two...
View Article