This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch jenkins-freebsd-arm64-quickjs in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 0e3ad9db7b1e6d6d8c8393fdd84eebd5dc44ed31 Author: Nick Vatamaniuc <[email protected]> AuthorDate: Wed May 15 17:20:11 2024 -0400 On ARM64 FreeBSD use QuickJS only Better than not running any tests at all for now, at least --- build-aux/Jenkinsfile.full | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full index 2eb57d95b..20426f114 100644 --- a/build-aux/Jenkinsfile.full +++ b/build-aux/Jenkinsfile.full @@ -97,20 +97,20 @@ meta = [ ], 'freebsd-x86_64': [ - name: 'FreeBSD', + name: 'FreeBSD x86_64', spidermonkey_vsn: '91', enable_clouseau: false, gnu_make: 'gmake' ], - // Disable temporarily until issue 4916 - // is resolved - // 'freebsd-arm64': [ - // name: 'FreeBSD', - // spidermonkey_vsn: '91', - // enable_clouseau: false, - // gnu_make: 'gmake' - // ], + // Spidermonkey 91 has issues on ARM64 FreeBSD + // use QuickJS for now + 'freebsd-arm64': [ + name: 'FreeBSD ARM64 QuickJS', + disable_spidermonkey: true, + enable_clouseau: false, + gnu_make: 'gmake' + ], 'macos': [ name: 'macOS',
