Access file parameter in jenkins -
i'm working on multiconfiguration job(regression_l1) in jenkins task run 2 kinds of tests(test1 , test2). in multiconfiguration job, triggers executor job(regression_executor) run script selected test. regression_l1 job restricted run in matrix_service_jobs node, while matrix jobs run in slave node custom_matrix_service_jobs node. regression_executor job restricted run in remote machines specific label(rl1_test_machine).
my goal test custom build developers. , added file parameter(config - file location: custombuild/mybuild.zip) job. question how can access uploaded file?
some important info:
- regression_executor's workspace:
/home/regressionexec/
- regression_l1's workspace:
/var/work/matrix_service_jobs/regression_l1
- regression_l1 matrix workspaces:
/var/work/workspace_user_matrix/workspace/regression_l1/test_phase/test1/label/custom_matrix_service_jobs/
,/var/work/workspace_user_matrix/workspace/regression_l1/test_phase/test2/label/custom_matrix_service_jobs/
- $jenkins_home:
var/work/jenkins_home
i did not know find uploaded files did search ung linux find
. result is: /var/work/jenkins_home/regression_l1/test_phase/test2/label/custom_matrix_service_jobs/builds/${build_number}/fileparameters/custombuild/mybuild.zip
.
how can copy slave node executes test script?
whatever enter under "file location", location and variable holds original filename of uploaded file.
however, on *nix, neither /
nor .
valid variable name characters, in case, if "file location" custombuild/mybuild.zip
system cannot create variable ${custombuild/mybuild.zip}
the file though still placed under ${workspace}/custombuild/mybuild.zip
. can access path too.
you can use copy slave plugin, copy file master slaves
Comments
Post a Comment