Hi,
First time poster here so be gentle
As of late yesterday evening we are getting the following error in our Travis builds:
apt-get install failed
The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install dpkg google-chrome-stable" failed and exited with 100 during .
The APT config we are installing is as follows:
addons:
apt:
update: true
sources:
- google-chrome
packages:
- dpkg
- google-chrome-stable
Previous posts I’ve checked on this, the issue seemed to disappear after a few days but this will really hinder our release process if we have to rely on manual running and kickoff.
Are there any thoughts or workarounds for this issue that anyone knows of?
Full config used:
os: linux
language: node_js
node_js:
- 11.6.0
sudo: required
env: DISPLAY=':99.0'
dist: trusty
addons:
apt:
update: true
sources:
- google-chrome
packages:
- dpkg
- google-chrome-stable