diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-01-31 15:10:04 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-01-31 15:14:15 +0100 |
commit | 5c111882de4d1cb6cd1d5a86c935c20bb3bc76a3 (patch) | |
tree | 6d558522c8c7554f36cbb5bb30b6ad4b9821e455 /gnu/ci.scm | |
parent | 9953c4fa94e233c9e397d1d60e91fd4a67859bad (diff) |
ci: Remove the package version from the job name.
Match Hydra behaviour where the job_name is <package_name>.<system>. This
allows to operate on several builds of the same package in the CI, regardless
of their version.
* gnu/ci.scm (job-name): Remove package version from the job name.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r-- | gnu/ci.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm index 736a133fc4..96bff64875 100644 --- a/gnu/ci.scm +++ b/gnu/ci.scm @@ -412,8 +412,7 @@ all its dependencies, and ready to be installed on \"foreign\" distributions.") (define job-name ;; Return the name of a package's job. - (compose string->symbol - (cut package-full-name <> "-"))) + (compose string->symbol package-name)) (define package->job (let ((base-packages |