Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis-ci deploy update #16

Open
luizcarloscf opened this issue Aug 5, 2020 · 0 comments
Open

travis-ci deploy update #16

luizcarloscf opened this issue Aug 5, 2020 · 0 comments
Assignees

Comments

@luizcarloscf
Copy link

Ubuntu Xenial 16.04 is the new default on travis-ci build environment. Repositories without an explicit dist: YAML key in their .travis.yml file will be routed to Xenial instead of Trusty. See more on travis-ci blog.

And sudo has no effect anymore.

current deploy

sudo: required
services:
- rabbitmq

xenial

RabbitMQ is not pre-installed on Xenial. Xenial databases and services.

Solution:

dist: xenial
addons:
  apt:
    packages:
      - rabbitmq-server
services:
  - rabbitmq

trusty

On Trusty, RabbitMQ is pre-installed. Trusty databases and services.

Solution:

dist: trusty
services:
- rabbitmq

For more info, checkout the travis-ci docs about RabbitMQ.

All the old builds were made using ubuntu trusty, so keep using it or pull request with ubuntu xenial build environment?

luizcarloscf added a commit that referenced this issue Aug 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants