From 6067ab38c81583fca925c61c83d3fe4a260a2012 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 28 Jun 2021 15:05:17 +0100 Subject: [PATCH] Parameterize build dir and make job explicit profile Signed-off-by: John --- scripts/build/Platform/Windows/build_config.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/build/Platform/Windows/build_config.json b/scripts/build/Platform/Windows/build_config.json index e37e467fa0..38392d4491 100644 --- a/scripts/build/Platform/Windows/build_config.json +++ b/scripts/build/Platform/Windows/build_config.json @@ -33,7 +33,7 @@ ], "steps": [ "profile_vs2019", - "test_impact_analysis", + "test_impact_analysis_profile_vs2019", "asset_profile_vs2019", "test_cpu_profile_vs2019" ] @@ -82,13 +82,15 @@ "SCRIPT_PARAMETERS": "--platform 3rdParty --type 3rdParty_all" } }, - "test_impact_analysis": { + "test_impact_analysis_profile_vs2019": { "TAGS": [ ], "COMMAND": "python_windows.cmd", "PARAMETERS": { + "OUTPUT_DIRECTORY": "build\\windows_vs2019", + "CONFIGURATION": "profile", "SCRIPT_PATH": "scripts/build/TestImpactAnalysis/tiaf_driver.py", - "SCRIPT_PARAMETERS": "--testFailurePolicy=continue --suite main --pipeline !PIPELINE_NAME! --destCommit !CHANGE_ID! --config \"build\\windows_vs2019\\bin\\TestImpactFramework\\persistent\\tiaf.profile.json\"" + "SCRIPT_PARAMETERS": "--testFailurePolicy=continue --suite main --pipeline !PIPELINE_NAME! --destCommit !CHANGE_ID! --config \"!OUTPUT_DIRECTORY!/bin/TestImpactFramework/persistent/tiaf.profile.json\"" } }, "debug_vs2019": {