Skip to content

Commit 6a05907

Browse files
committed
Install RabbitMQ as prereq of CI
RabbitMQ doesn't appear to be supported natively by TravisCI any more. It disappeared in the upgrade from Trusty to Xenial. To use it, yuo have to install it yourself, which I do here using an addons.apt stanza.
1 parent 773eb92 commit 6a05907

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ node_js:
1616
- "11.1"
1717
- "node"
1818

19-
services:
20-
- rabbitmq
19+
addons:
20+
apt:
21+
packages:
22+
- rabbitmq-server
2123

2224
before_install:
2325
- node --version | (grep -v 'v5' && npm install -g npm@2) || true

0 commit comments

Comments
 (0)