unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Cuirass job names and package variants
@ 2021-06-25 11:44 Ludovic Courtès
  2021-06-25 12:12 ` Leo Prikler
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2021-06-25 11:44 UTC (permalink / raw)
  To: guix-devel; +Cc: Mathieu Othacehe

Hello!

Cuirass support in (gnu ci) computes job names as a function of package
names (the ‘job-name’ procedure).  I wanted to build several package
variants using ‘--with-input’, which I expressed in a manifest:

  https://gitlab.inria.fr/guix-hpc/guix-hpc/-/blob/master/manifest#L33-50

However, variants of a given package have the same package name/version,
and thus the same job name.  Apparently Cuirass only takes the first job
with a given name into account and dismisses subsequent ones.

What would be a good way to address this, either in Cuirass or in the
user config?

I thought about changing the name that appears in manifest entries
(without changing the actual package name), but (@ (gnu ci)
manifests->packages) ignores manifest entry names.

Ideas?

Thanks,
Ludo’.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cuirass job names and package variants
  2021-06-25 11:44 Cuirass job names and package variants Ludovic Courtès
@ 2021-06-25 12:12 ` Leo Prikler
  2021-06-25 14:30   ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Leo Prikler @ 2021-06-25 12:12 UTC (permalink / raw)
  To: Ludovic Courtès, guix-devel; +Cc: Mathieu Othacehe

Am Freitag, den 25.06.2021, 13:44 +0200 schrieb Ludovic Courtès:
> Hello!
> 
> Cuirass support in (gnu ci) computes job names as a function of
> package
> names (the ‘job-name’ procedure).  I wanted to build several package
> variants using ‘--with-input’, which I expressed in a manifest:
> 
>   
> https://gitlab.inria.fr/guix-hpc/guix-hpc/-/blob/master/manifest#L33-50
> 
> However, variants of a given package have the same package
> name/version,
> and thus the same job name.  Apparently Cuirass only takes the first
> job
> with a given name into account and dismisses subsequent ones.
> 
> What would be a good way to address this, either in Cuirass or in the
> user config?
Do we already know – or could we compute – store paths at this point in
time?  It seems as though this could be solved once more by assigning
ids based on hashed inputs.  So each job-name would be something like
(package-name)-(package-version)-(first-bytes-of-package-input-hash).
WDYT?



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cuirass job names and package variants
  2021-06-25 12:12 ` Leo Prikler
@ 2021-06-25 14:30   ` Ludovic Courtès
  2021-06-25 14:41     ` Leo Prikler
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2021-06-25 14:30 UTC (permalink / raw)
  To: Leo Prikler; +Cc: guix-devel, Mathieu Othacehe

Leo Prikler <leo.prikler@student.tugraz.at> skribis:

> Am Freitag, den 25.06.2021, 13:44 +0200 schrieb Ludovic Courtès:

[...]

>> However, variants of a given package have the same package
>> name/version,
>> and thus the same job name.  Apparently Cuirass only takes the first
>> job
>> with a given name into account and dismisses subsequent ones.
>> 
>> What would be a good way to address this, either in Cuirass or in the
>> user config?
> Do we already know – or could we compute – store paths at this point in
> time?  It seems as though this could be solved once more by assigning
> ids based on hashed inputs.  So each job-name would be something like
> (package-name)-(package-version)-(first-bytes-of-package-input-hash).
> WDYT?

That job names are human-readable is a feature.  :-)

However, what we could do is have an autoincrement ID or similar (?)
rather than the package name used as the actual key.  Dunno.

Thanks,
Ludo’.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cuirass job names and package variants
  2021-06-25 14:30   ` Ludovic Courtès
@ 2021-06-25 14:41     ` Leo Prikler
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Prikler @ 2021-06-25 14:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, Mathieu Othacehe

Am Freitag, den 25.06.2021, 16:30 +0200 schrieb Ludovic Courtès:
> Leo Prikler <leo.prikler@student.tugraz.at> skribis:
> 
> > Am Freitag, den 25.06.2021, 13:44 +0200 schrieb Ludovic Courtès:
> 
> [...]
> 
> > > However, variants of a given package have the same package
> > > name/version,
> > > and thus the same job name.  Apparently Cuirass only takes the
> > > first
> > > job
> > > with a given name into account and dismisses subsequent ones.
> > > 
> > > What would be a good way to address this, either in Cuirass or in
> > > the
> > > user config?
> > Do we already know – or could we compute – store paths at this
> > point in
> > time?  It seems as though this could be solved once more by
> > assigning
> > ids based on hashed inputs.  So each job-name would be something
> > like
> > (package-name)-(package-version)-(first-bytes-of-package-input-
> > hash).
> > WDYT?
> 
> That job names are human-readable is a feature.  :-)
> 
> However, what we could do is have an autoincrement ID or similar (?)
> rather than the package name used as the actual key.  Dunno.
In that case there is nothing to relate jobs to packages, which I'd
assume is also a feature?  We could have job names be unique id +
package name, but since those ids grow larger and larger, i think
they'd soon become unreadable as well.  Maybe add -1, -2, -3,... to the
job names if a job with the same name is already queued like backup
systems do?



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-25 14:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-25 11:44 Cuirass job names and package variants Ludovic Courtès
2021-06-25 12:12 ` Leo Prikler
2021-06-25 14:30   ` Ludovic Courtès
2021-06-25 14:41     ` Leo Prikler

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).