Skip to content
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

Closed
karelyatin opened this issue Jan 25, 2022 · 9 comments
Closed

Comments

@karelyatin
Copy link
Contributor

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]

def refreshrepo(url, path, config_options, branch="master", local=False,

[2] https://bugs.launchpad.net/tripleo/+bug/1958995
[3]
if not os.path.isdir(distro_dir):
# We should fail in this case, since we are running
# in dev mode, so no try/except
refreshrepo(distro, distro_dir, self.config_options, distro_branch,
local=local, full_path=distro_dir_full)

@amoralej
Copy link
Contributor

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...

@karelyatin
Copy link
Contributor Author

karelyatin commented Jan 25, 2022

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

@amoralej
Copy link
Contributor

So, IIUC what we want is:

  1. The build-test-package role takes care of checking out the commit for branch stable/A.

  2. The build-test-package role creates a projects.ini config for release A

  3. dlrn is executed with --local to build the patch. If we not use --dev, we'd get the distgit from RDO to the required branch. Isn't that what we want?

  4. The build-test-package checks out the second commit for branch stable/B

  5. The build-test-package role creates a new nrojects.ini config for release B.

  6. Remove the database

  7. dlrn is executed with --local but without --dev to force checkout of the distgit in the new branch.

What's missing from dlrn features PoV?.

@amoralej
Copy link
Contributor

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 ?

@karelyatin
Copy link
Contributor Author

Yes right for distgit, just removing will work and dlrn will auto clone required branch as per projects.ini.
What about source repos? To support that changes needed in DLRN side, right?

@amoralej
Copy link
Contributor

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

@karelyatin
Copy link
Contributor Author

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.

@karelyatin
Copy link
Contributor Author

Handling it like https://review.opendev.org/c/openstack/tripleo-quickstart-extras/+/826284 in tripleo side to support this use case.

openstack-mirroring pushed a commit to openstack-archive/tripleo-quickstart-extras that referenced this issue Feb 15, 2022
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
openstack-mirroring pushed a commit to openstack/openstack that referenced this issue Feb 15, 2022
* 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
@apevec
Copy link
Contributor

apevec commented Oct 24, 2023

use-case solved in tripleo-quickstart https://review.opendev.org/c/openstack/tripleo-quickstart-extras/+/826284

@apevec apevec closed this as completed Oct 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants