26 lines
671 B
YAML
26 lines
671 B
YAML
sudo: required
|
|
|
|
language: bash
|
|
|
|
install:
|
|
# Dependencies
|
|
- sudo apt-get update -qq
|
|
- sudo pip install --upgrade pip
|
|
- sudo apt-get install -qq cdparanoia cdrdao gstreamer0.10-plugins-base gstreamer0.10-plugins-good libcdio-dev libiso9660-dev libsndfile1-dev python-cddb python-gobject swig python-dev python-xdg
|
|
- sudo pip install musicbrainzngs pycdio
|
|
|
|
# Testing dependencies
|
|
- sudo apt-get install -qq gstreamer0.10-tools python-gst0.10
|
|
- sudo pip install twisted
|
|
|
|
# Build bundled C utils
|
|
- cd src
|
|
- sudo make install
|
|
- cd ..
|
|
|
|
# Installing
|
|
- sudo python setup.py install
|
|
|
|
script:
|
|
- python -m unittest discover
|