Skip to content

Commit

Permalink
[travis] fix apt package installs
Browse files Browse the repository at this point in the history
Travis CI builds (on Ubuntu 12.04 Precise) were failing at the
before_install step with the error:

    E: Unable to locate package lighttpd
    E: Unable to locate package libmemcache-dev

Updating the apt cache fixes it.
  • Loading branch information
ktheory committed Dec 22, 2015
1 parent f456261 commit 37e486b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,4 +1,6 @@
before_install: sudo apt-get install lighttpd libfcgi-dev libmemcache-dev memcached
before_install:
- sudo apt-get update > /dev/null
- sudo apt-get -y install lighttpd libfcgi-dev libmemcache-dev memcached
install:
- gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
- bundle install --jobs=3 --retry=3
Expand Down

0 comments on commit 37e486b

Please sign in to comment.