From 366bd1c855e6ffdf21ef77b595763ec1b694927c Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Thu, 3 Jul 2025 20:21:17 +0200 Subject: [PATCH] fix(core): fix failing `common-test-core.sh` script Also pass `win` for Windows which will build both x86 and x64. Test-bot: skip --- resources/teamcity/common/common-test-core.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/resources/teamcity/common/common-test-core.sh b/resources/teamcity/common/common-test-core.sh index 57bc8a1c2c..9ea781697a 100755 --- a/resources/teamcity/common/common-test-core.sh +++ b/resources/teamcity/common/common-test-core.sh @@ -25,19 +25,16 @@ builder_parse "$@" if is_ubuntu; then ARCH=arch elif is_windows; then - ARCH=x86 + ARCH=win elif is_macos; then ARCH=mac else builder_echo error "Unknown architecture" - return 1 + exit 1 fi function do_all() { "${KEYMAN_ROOT}/core/build.sh" configure,build,test:${ARCH} - if is_windows; then - "${KEYMAN_ROOT}/core/build.sh" configure,build,test:x64 - fi } builder_run_action all do_all