diff options
author | 이형주/MDE Lab(SR)/삼성전자 <leee.lee@samsung.com> | 2024-11-14 14:47:30 +0900 |
---|---|---|
committer | GitHub Enterprise <noreply-CODE@samsung.com> | 2024-11-14 14:47:30 +0900 |
commit | 6528beda24c4fb0970700094a9e9bc0187cd7a6e (patch) | |
tree | 7f415dffb63850542d49879ab52683572350e3bb | |
parent | 92fb3537686485accd828518c8e10b6fb0ce1eb5 (diff) | |
download | runtime-tizen.tar.gz runtime-tizen.tar.bz2 runtime-tizen.zip |
[Tizen] Bypass GBS build fail for exitcode 143 (#637)accepted/tizen/unified/x/asan/20241114.221516accepted/tizen/unified/x/20241114.135527accepted/tizen/unified/20241121.055647tizen_devtizenaccepted/tizen_unified_x_asanaccepted/tizen_unified_xaccepted/tizen_unified
-rwxr-xr-x | eng/common/tools.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eng/common/tools.sh b/eng/common/tools.sh index e8d47894334..a67a3f1a079 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -498,7 +498,7 @@ function MSBuild-Core { function RunBuildTool { export ARCADE_BUILD_TOOL_COMMAND="$_InitializeBuildTool $@" - "$_InitializeBuildTool" "$@" || { + "$_InitializeBuildTool" "$@" || "$_InitializeBuildTool" "$@" || { local exit_code=$? # We should not Write-PipelineTaskError here because that message shows up in the build summary # The build already logged an error, that's the reason it failed. Producing an error here only adds noise. |