-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
sudo: required | ||
|
||
language: bash | ||
|
||
branches: | ||
only: | ||
- fork | ||
|
||
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 python-cddb python-gobject swig | ||
- sudo pip install musicbrainzngs pycdio | ||
|
||
# Testing dependencies | ||
- sudo apt-get install -qq python-gst0.10 | ||
- sudo pip install twisted | ||
|
||
# Checkout | ||
- ./autogen.sh | ||
|
||
# Building | ||
- ./configure | ||
- make | ||
|
||
# Installing | ||
- sudo make install | ||
|
||
# Check flacenc availability | ||
- sudo apt-get install -qq gstreamer0.10-tools | ||
- gst-inspect-0.10 flacenc | ||
|
||
script: | ||
- python -m unittest discover |