We have this step in our config.yml:
- run:
name: Update and install required packages
command: |
...
sudo apt-get -y update
sudo apt-get -y install chromium-browser
However, the install step fails as the package isn’t available:
Package chromium-browser is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'chromium-browser' has no installation candidate
As far as I can tell, the package should be available in Ubuntu 14.04: https://launchpad.net/ubuntu/trusty/+source/chromium-browser
I did notice that the environment appears to be using Debian stretch package repositories, but it’s also available there: https://packages.debian.org/stretch/chromium
I can’t quite figure out why the package can’t be located; do the default environments exclude some of the regular package repositories? Is there a repository we need to add?