.travis.yml: install sox and create some sounds
authorPaul Brossier <piem@piem.org>
Sat, 30 Apr 2016 02:17:30 +0000 (04:17 +0200)
committerPaul Brossier <piem@piem.org>
Sat, 30 Apr 2016 02:17:30 +0000 (04:17 +0200)
.travis.yml

index 57ab527..2fd26f2 100644 (file)
@@ -78,8 +78,14 @@ addons:
     - libjack-dev
     - libasound2-dev
     - libfftw3-dev
+    - sox
+
+before_install:
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then; brew upgrade; fi
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then; brew install sox; fi
 
 script:
+  - make create_test_sounds
   - make build
   - make build_python
   - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make test_python; fi