Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
659 B
Bash

#!/bin/bash
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
platform=""
if [ "$(uname)" = "Darwin" ]; then
platform="Mac"
fi
if [ "$(uname)" = "Linux" ]; then
platform="Linux"
fi
"$SCRIPT_DIR"/**RUN_UAT_RELATIVEPATH**/RunUAT.sh BuildGraph -Script=**REPLACE_PROJECTPATH**/Build/AutoPerfTests.xml -Target="BuildAndTest **REPLACE_PROJECTNAME**" -UseLocalBuildStorage -set:TargetPlatforms=$platform -set:WithAPTSequenceTests=true -set:TargetConfigurations=Test -set:DoPerf=true -set:DoLLM=true -set:GenerateLocalReports=true -set:GenerateLocalReports=true -set:IterationsPerf=1 -set:IterationsLLM=1 -set:IterationsInsights=1