[sysadmin/neon-tooling] jenkins-jobs/nci: it's an array, thus should not have commas
Carlos De Maine <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 0d9c94c3733fe9758b6998116e103ac116e7deeb by Carlos De Maine.
Committed on 22/07/2026 at 02:50.
Pushed by carlosdem into branch 'master'.
it's an array, thus should not have commas
M +1 -1 jenkins-jobs/nci/project.rb
https://invent.kde.org/sysadmin/neon-tooling/-/commit/0d9c94c3733fe9758b6998116e103ac116e7deeb
diff --git a/jenkins-jobs/nci/project.rb b/jenkins-jobs/nci/project.rb
index e663ed14..8ca58a22 100644
--- a/jenkins-jobs/nci/project.rb
+++ b/jenkins-jobs/nci/project.rb
@@ -17,7 +17,7 @@ class ProjectJob < JenkinsJob
return [] unless project.debian?
architectures = architectures.dup
- architectures << 'i386' if %w[gst-plugins-good1.0-noble, libdrm-noble, lcms2-noble, pcre2-noble, poppler-noble, vulkan-loader-noble, wayland-noble ].any? { |x| project.name == x }
+ architectures << 'i386' if %w[gst-plugins-good1.0-noble libdrm-noble lcms2-noble pcre2-noble poppler-noble vulkan-loader-noble wayland-noble ].any? { |x| project.name == x }
basename = basename(distribution, type, project.component, project.name)