RabbitMQ on Xenial

Hello.

According to doc(https://docs.travis-ci.com/user/reference/xenial/), it seems that RabbitMQ is not installed on Xenial Build.
If want to use RabbitMQ, have to install it by a user side? If so, is there a recommended way to do that?

Thanks.

It’s completely untested, but Xenial has the package rabbitmq-server https://packages.ubuntu.com/xenial/rabbitmq-server, which should be usable for you. https://docs.travis-ci.com/user/installing-dependencies#installing-packages-on-standard-infrastructure

With the apt addon, it might look like this:

addons:
  apt:
    packages:
      - rabbitmq-server

It worked expected. Thanks!