Issue Type: Improvement Improvement
Assignee: Kohsuke Kawaguchi
Components: matrix-project-plugin
Created: 25/Nov/14 7:17 PM
Description:

Hi.

An issue related to 6048, but not just about special characters, but too long path names.

The Matrix Project plugin is picking the multi-configuration directory names, based on both the configuration axis names and their values, and this leads to very long sub-directory paths, not to mention names with inconvenient characters in them, as my options include hyphens as part of their values. (Both Windows and Unix allow hyphens in their directory names, but then to traverse these directories interactively is inconvenient as it requires escaping.)

Example:
I have three axis, one for the slave name, (whose parameter name defaults to "label"), a configuration build option for either 32 bit or 64 bit, and a debug or release build type option.

label
slaves names: company_server_1, company_server_2
bit_option:
values" --enable32, --enable64
type:
values: debug, release

This leads to directory names such as:

.../label/company_server_1/bit_option/--enable32/type/release
.../label/company_server_2/bit_option/--enable64/type/debug

In other words, 2 sub-directories as added for each axis consisting of a parameter name, and one of its possible values. Having 3 axis means 6 sub-directories are presently used.

In some cases, when added to the root of the file system used for the slave connection, I can end up a base build path of 100 characters, leading me to build problems when the build themselves contains other very long path names.

Trying to cd into a directory starting with --enable doesn't work, these have to be quoted.

I can do various things to shorten the axis parameter names, but not too much about the values, nor the root of the file system for the slave connection.

For example, I can make the label just "l", and the "bits_options" just "b", and the type option just t, but cannot change the options values themselves. This still leads to 6 sub-directories as follows:

.../l/company_server_1/b/--enable32/t/release
.../l/company_server_2/b/--enable64/t/debug

Existing suggestion not workable:
This is a enhancement that is not needed for all projects. Invoking the Jenkins at startup with the MatrixConfiguration.useShortWorkspaceName as described in the 6048 issue would mean all projects get shortened hashname directories, which is not a desirable fix. Other users do not want or need this. The enhancement needs to be able to be applied on a per-project basis.

Suggestions:
1) It is NOT necessary to include the parameter name as part of the directory path, as only the parameter values need to be used. In my example earlier, this means we do not need to include the "label" (or "l"), or "bit_option" (or 'b"), or "type" (or "t") in the directory path. Only the parameter values (and not also their names) are required. This would shorten the above example by 22 characters as coded originally, and a a further 6 characters (and 3 sub-directories) less after doing everything I can presently due to shorten the path. Only the following 3 sub-directory paths would be needed, and not 6 as are presently used.
.../company_server_1/--enable32/release
.../company_server_2/--enable64/debug

So,the first suggestion is to either drop using the parameter name as part of the directory entirely, or at least, have a tick box which defaults to "on" for compatibility with existing behaviour, but which could be turned off.

2) the second suggestion is to allow the specifying of a directory name for each value. For example, in my situation, I would like to map the following values to shorter directory names:

parameter : company_server_1 ---> s1
parameter : company_server_2 ---> s2
parameter : debug ---> d
parameter : release ---> r
parameter : --enable32 ---> 32
parameter : --enable64 ---> 64

if I could specify the directory name to be used with each value, then with the above changes included, my 3 axis of parameters can be specified as 3 very short directory names, without special characters, as in:
.../s1/32/r
.../s2/64/d

which is considerably shorter then then the present method using 6 sub-directories which makes me skimp on parameter names.

.../label/company_server_1/bit_option/--enable32/type/release
.../label/company_server_2/bit_option/--enable64/type/debug

Environment: Jenkins 1.576, Matrix Plugin: 1.4, windows, Unix.
Project: Jenkins
Labels: plugin jenkins
Priority: Minor Minor
Reporter: Rick Patterson
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to