moul / travis-docker

:whale::man: Docker in Travis-CI
https://manfred.life/travis-docker
MIT License
106 stars 22 forks source link

Issue with missing lib #27

Closed dirkmoors closed 9 years ago

dirkmoors commented 9 years ago

See: https://travis-ci.org/vikingco/python-kong/jobs/72454511#L363

When building my project with travis-docker enabled, I'm getting the following errors:

FATAL: Could not load /lib/modules/2.6.32-042stab108.3/modules.dep: No such file or directory
Warning: current kernel is not supported by the linux-image-extra-virtual
 package.  We have no AUFS support.  Consider installing the packages
 linux-image-virtual kernel and linux-image-extra-virtual for AUFS support.

What am I doing wrong?

My repo: https://github.com/vikingco/python-kong

felipesabino commented 9 years ago

Almost the same here...

FATAL: Could not load /lib/modules/2.6.32-042stab090.5/modules.dep: No such file or directory
Warning: current kernel is not supported by the linux-image-extra-virtual
 package.  We have no AUFS support.  Consider installing the packages
 linux-image-virtual kernel and linux-image-extra-virtual for AUFS support.

here is my .travis.yml:

language: node_js
sudo: true
node_js:
  - "0.12"
services:
  - mongodb
  - memcached
before_install:
  # https://github.com/moul/travis-docker
  - curl -sLo - http://j.mp/install-travis-docker | sh -xe
script:
  - npm run travis
  - ./run 'docker build .'
env:
  global:
    - BRANCH=v1.0.0
    - QUIET=1
    - UML_FIG=0
    - UML_DOCKERCOMPOSE=0
moul commented 9 years ago

Fixed with latest stable release

Try to just re-run the test :)

felipesabino commented 9 years ago

thanks @moul, it works for me now :+1: