【发布时间】:2017-12-03 02:02:48
【问题描述】:
从今天开始,我在使用 Travis CI 时遇到以下问题:.travis.yml 的 before_install 部分中指定的所需包:
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq rabbitmq-server
无法安装,破坏了构建。
Travis 控制台日志显示的响应:
$ sudo apt-get update -qq W: http://ppa.launchpad.net/couchdb/stable/ubuntu/dists/trusty/Release.gpg: Signature by key 15866BAFD9BCC4F3C1E0DFC7D69548E1C17EAB57 uses weak digest algorithm (SHA1) $ sudo apt-get install -qq rabbitmq-server E: Unable to correct problems, you have held broken packages. The command "sudo apt-get install -qq rabbitmq-server" failed and exited with 100 during . Your build has been stopped.
我将如何克服这个问题?我已尝试在本地复制该问题,但似乎无法重现。
【问题讨论】:
标签: rabbitmq continuous-integration travis-ci sha