-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build] Fix export of 'TEST_CONFIGURATIONS_EXPECTED' in SSH execution
Because in the 'Collect Result' jobs the publish.xml ANT script is executed remotely on the download-server via SSH the environment variables defined in the shell on the build-server are not available. As a workaround, define the 'testsConfigExpected' property explicitly as command-line argument. Also rename 'TESTS_CONFIGURATIONS_EXPECTED' to 'TEST_CONFIGURATIONS_EXPECTED' to avoid a double-plural. Follow-up to #2693
- Loading branch information
1 parent
5f0e4ca
commit 86cd6c1
Showing
7 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,7 @@ ssh [email protected] ${javaCMD} -jar ${launcherJar} -n | |
-Djob=${triggeringJob} \\ | ||
-DbuildID=${buildID} \\ | ||
-DeclipseStream=${STREAM} \\ | ||
"-DtestsConfigExpected=${TEST_CONFIGURATIONS_EXPECTED}" \\ | ||
-DEBuilderDir=${workspace} | ||
#Delete Workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,7 @@ ssh [email protected] ${javaCMD} -jar ${launcherJar} -n | |
-Djob=${triggeringJob} \\ | ||
-DbuildID=${buildID} \\ | ||
-DeclipseStream=${STREAM} \\ | ||
"-DtestsConfigExpected=${TEST_CONFIGURATIONS_EXPECTED}" \\ | ||
-DEBuilderDir=${workspace} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,6 +111,7 @@ ssh [email protected] ${javaCMD} -jar ${launcherJar} -n | |
-Djob=${triggeringJob} \\ | ||
-DbuildID=${buildID} \\ | ||
-DeclipseStream=${STREAM} \\ | ||
"-DtestsConfigExpected=${TEST_CONFIGURATIONS_EXPECTED}" \\ | ||
-DEBuilderDir=${workspace} | ||
#Delete Workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters