-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFE] Allow to force checkout when --local and --dev options are used #39
Comments
So, IIUC, each dlrn run will require diferent projects.ini config to point to different branches, releases, right?, in that case i'd say it's like running two different instances of dlrn. BTW, how will tripleo manage the two depends-on on different branches? i need more details... |
Yes projects.ini is created on the fly based on release getting deployed, so it will be seperate for both initial deploy and upgrade deploy. For different depends-on just have an example like https://review.rdoproject.org/r/c/testproject/+/38542 and also some more info on use case in the linked bug https://bugs.launchpad.net/tripleo/+bug/1958995 |
So, IIUC what we want is:
What's missing from dlrn features PoV?. |
I think i got it now. We need to use --dev to get delorean repos added from trunk.r.o to the mock config. So i think the best solution here is to simply remove data/*_distgit when removing the database in step 6 ? |
Yes right for distgit, just removing will work and dlrn will auto clone required branch as per projects.ini. |
But, we'd we want to clone the repos upstream?, my understanding is that the whole point of building packages in the job is to build patches wich are still unmerged, in depends-on or in the project gate. In which case we may need to build temporarily from upstream last commit? we already have that in rdo trunk current repo |
No we don't want to rebuild already built patches. So in upgrade jobs(Like VIctoria to Wallaby) we want to build packages for depends-on from both stable/victoria and stable/wallaby. |
Handling it like https://review.opendev.org/c/openstack/tripleo-quickstart-extras/+/826284 in tripleo side to support this use case. |
DLRN with --local and --dev options uses whatever already checked out source and distgit[1]. So in order to get packages build for multiple releases like in upgrade jobs we need to prepare both source(git clean and git checkout) and distgit(remove it so DLRN fetches it based on config). Also use release var to compute what change to build when it's defined, when not defined use zuul override-checkout or branch. Additionally add non-cached fact artg_change_list_prep to compute the changes list as using artg_change_list causes inclusion of changes from previous run. [1] softwarefactory-project/DLRN#39 Co-authored-by: Bogdan Dobrelya <[email protected]> Closes-Bug: #1958995 Change-Id: I1495128dc3087bc728a51cf667a8fb394fe87893
* Update tripleo-quickstart-extras from branch 'master' to d261f1e4cfa6ec253bbb42324b464de986b23e32 - Merge "Allow dlrn builds from both deploy release and upgrade release" - Allow dlrn builds from both deploy release and upgrade release DLRN with --local and --dev options uses whatever already checked out source and distgit[1]. So in order to get packages build for multiple releases like in upgrade jobs we need to prepare both source(git clean and git checkout) and distgit(remove it so DLRN fetches it based on config). Also use release var to compute what change to build when it's defined, when not defined use zuul override-checkout or branch. Additionally add non-cached fact artg_change_list_prep to compute the changes list as using artg_change_list causes inclusion of changes from previous run. [1] softwarefactory-project/DLRN#39 Co-authored-by: Bogdan Dobrelya <[email protected]> Closes-Bug: #1958995 Change-Id: I1495128dc3087bc728a51cf667a8fb394fe87893
use-case solved in tripleo-quickstart https://review.opendev.org/c/openstack/tripleo-quickstart-extras/+/826284 |
Currently when --local is used whatever checked out branch is there that's used[1] to get the package build. In TripleO CI there is a request[2] to get package build twice for upgrade jobs(once for deploy release and then for the upgrade release). In zuul jobs source repos are already cloned and the branch is checked out based on zuul job config: override-checkout or zuul branch. For distgit repos those are cloned[3] if not already cloned with --dev mode, would need to allow force checkout for this case too.
It would be good to get this supported in DLRN.
[1]
DLRN/dlrn/repositories.py
Line 25 in 92c9bda
[2] https://bugs.launchpad.net/tripleo/+bug/1958995
[3]
DLRN/dlrn/drivers/rdoinfo.py
Lines 146 to 150 in 92c9bda
The text was updated successfully, but these errors were encountered: