couchdb:jenkins-try-freebsd-arm

Last commit made on 2024-05-13
Get this branch:
git clone -b jenkins-try-freebsd-arm https://git.launchpad.net/couchdb

Branch merges

Branch information

Name:
jenkins-try-freebsd-arm
Repository:
lp:couchdb

Recent commits

b1c76e4... by Nick V.

Try ARM64 FreeBSD builder again

ada5135... by Nick V.

Use the built-in crypto:pbkdf2_hmac function

The fix to make `crypto:pbkdf2_hmac/5` yield properly is now in all the supported
Erlang/OTP versions, so we can switch to use it [1].

This also removes the build dependency on OpenSSL dev package.

[1] https://github.com/erlang/otp/pull/8174

105cf01... by Nick V.

Update CI OSes

Remove deprecated buster, centos 7 and bionic.

022ffd1... by Nick Vatamaniuc <email address hidden>

Update CI Erlang versions

e3a819f... by Robert Newson <email address hidden>

Merge pull request #5047 from apache/dropwizard-4.0.7

upgrade dropwizard to 4.0.7

78309a6... by Robert Newson <email address hidden>

upgrade dropwizard to 4.0.7

2884d67... by Ronny Berndt

Create Python virtualenv on Windows for docs (#5045)

Add an equivalent setup script for Windows to
init python dev environment for building docs.

f5292d8... by Nick V.

Fix invalid call to exit/2 in couch_server

Previously we called it as `exit(couch_server_N, config_change)` but exit/2
doesn't know what to do with an atom, it needs a pid.

```
exit(couch_server_1, foo).
** exception error: bad argument
     in function exit/2
        called as exit(couch_server_1,foo)
        *** argument 1: not a pid
```

This doesn't actually restart the servers as intended and it's also making
quite a mess in the eunit logs.

In addition to ensuring we're calling a Pid, use a `{shutdown, _}` error shape
to avoid triggering verbose SASL report as it's an expected condition.

0a431b8... by Nick V.

Improve fabric all_dbs test

Previously I forgot to assert we actually created the dbs and forgot to clean
them up. Also, add a few more cases using a wider variety of delimiters.

ab07e51... by Robert Newson <email address hidden>

Merge pull request #5038 from Sliosh/patch-1

Fix small detail about conflicts in overview.rst