This is an automated email from the ASF dual-hosted git repository. kocolosk pushed a commit to branch jenkins-dynamic-matrix-3x in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 7e0759564d3258f88cfa32e6640439beb3da181b Author: Adam Kocoloski <[email protected]> AuthorDate: Thu Jan 20 19:55:32 2022 -0500 Properly test for SM60 on ARM builds Already fixed by @lostnet on main. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 9c22181..0bcbfae 100755 --- a/configure +++ b/configure @@ -224,9 +224,9 @@ parse_opts() { parse_opts $@ -if [ "${ARCH}" = "aarch64" ] && [ "${SM_VSN}" != "1.8.5" ] +if [ "${ARCH}" = "aarch64" ] && [ "${SM_VSN}" = "60" ] then - echo "ERROR: SpiderMonkey 60 is known broken on ARM 64 (aarch64). Use 1.8.5 instead." + echo "ERROR: SpiderMonkey 60 is known broken on ARM 64 (aarch64). Use another version instead." exit 1 fi
