@@ -39,11 +39,11 @@ public Environment setUpEnvironment(AbstractBuild build, Launcher launcher, Buil
39
39
try {
40
40
if (!isMatrixRun (build )) {
41
41
if (variableGetter .isEnvInjectJobPropertyActive (build )) {
42
- return setUpEnvironmentNonMatrixProject (build , launcher , listener );
42
+ return setUpEnvironmentNonMatrixRun (build , launcher , listener );
43
43
}
44
44
} else {
45
45
if (variableGetter .isEnvInjectJobPropertyActive (build )) {
46
- return setUpEnvironmentMatrixProject (build , listener );
46
+ return setUpEnvironmentMatrixRun (build , listener );
47
47
}
48
48
}
49
49
} catch (EnvInjectException envEx ) {
@@ -60,7 +60,7 @@ public Environment setUpEnvironment(AbstractBuild build, Launcher launcher, Buil
60
60
};
61
61
}
62
62
63
- private Environment setUpEnvironmentNonMatrixProject (AbstractBuild build , Launcher launcher , BuildListener listener ) throws IOException , InterruptedException , EnvInjectException {
63
+ private Environment setUpEnvironmentNonMatrixRun (AbstractBuild build , Launcher launcher , BuildListener listener ) throws IOException , InterruptedException , EnvInjectException {
64
64
EnvInjectVariableGetter variableGetter = new EnvInjectVariableGetter ();
65
65
EnvInjectLogger logger = new EnvInjectLogger (listener );
66
66
logger .info ("Preparing an environment for the job." );
@@ -129,10 +129,10 @@ public void buildEnvVars(Map<String, String> env) {
129
129
};
130
130
}
131
131
132
- private Environment setUpEnvironmentMatrixProject (AbstractBuild build , BuildListener listener ) throws IOException , InterruptedException , EnvInjectException {
132
+ private Environment setUpEnvironmentMatrixRun (AbstractBuild build , BuildListener listener ) throws IOException , InterruptedException , EnvInjectException {
133
133
EnvInjectVariableGetter variableGetter = new EnvInjectVariableGetter ();
134
134
EnvInjectLogger logger = new EnvInjectLogger (listener );
135
- logger .info ("Using environment variables injected by the matrix job." );
135
+ logger .info ("Using environment variables injected by the parent matrix job." );
136
136
final Map <String , String > resultVariables = variableGetter .getEnvVarsPreviousSteps (build , logger );
137
137
final FilePath rootPath = getNodeRootPath ();
138
138
@@ -267,12 +267,21 @@ public void onCompleted(Run run, TaskListener listener) {
267
267
268
268
EnvInjectPluginAction envInjectAction = run .getAction (EnvInjectPluginAction .class );
269
269
if (envInjectAction != null ) {
270
+
270
271
//Add other plugins env vars contribution variables (exclude builder action and parameter actions already populated)
271
272
for (EnvironmentContributingAction a : Util .filter (run .getActions (), EnvironmentContributingAction .class )) {
272
273
if (!parameter2exclude (a )) {
273
274
a .buildEnvVars ((AbstractBuild <?, ?>) run , envVars );
274
275
}
275
276
}
277
+
278
+ //Add workspace if not set
279
+ AbstractBuild build = (AbstractBuild ) run ;
280
+ FilePath ws = build .getWorkspace ();
281
+ if (ws != null ) {
282
+ envVars .put ("WORKSPACE" , ws .getRemote ());
283
+ }
284
+
276
285
} else {
277
286
//Keep classic injected env vars
278
287
AbstractBuild abstractBuild = (AbstractBuild ) run ;
0 commit comments