|
@@ -379,10 +379,13 @@ def Build(Map pipelineConfig, String platform, String type, String workspace) {
|
|
PlatformSh(command, "Running ${platform} ${type}")
|
|
PlatformSh(command, "Running ${platform} ${type}")
|
|
}
|
|
}
|
|
|
|
|
|
- // Launch the project, which automatically starts the tests
|
|
|
|
- launch_command += "NetSoakTest.ServerLauncher --soak_runtime=1800000 --soak_mode=loopback --rhi=null"
|
|
|
|
- dir("${workspace}/${ENGINE_REPOSITORY_NAME}") {
|
|
|
|
- PlatformSh(launch_command, "Running NetSoakTest project")
|
|
|
|
|
|
+ // Only launch NetSoakTest on the appropriate platforms
|
|
|
|
+ if (platform == 'Windows' &&) {
|
|
|
|
+ // Launch the project, which automatically starts the tests
|
|
|
|
+ launch_command = "NetSoakTest.ServerLauncher --soak_runtime=1800000 --soak_mode=loopback --rhi=null"
|
|
|
|
+ dir("${workspace}/${ENGINE_REPOSITORY_NAME}") {
|
|
|
|
+ PlatformSh(launch_command, "Running NetSoakTest project")
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|