Last active
March 10, 2017 16:29
-
-
Save LeifAndersen/41cef0f6576d7947de193bb819c043a1 to your computer and use it in GitHub Desktop.
Travis Debug Script for Video
This file contains hidden or 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
| #!/usr/bin/env bash | |
| export RACKET_DIR=~/racket | |
| export RACKET_VERSION=HEAD | |
| sudo apt-get -qq update | |
| sudo apt-get install -y libmlt6 | |
| sudo apt-get install -y libav-tools | |
| sudo apt-get install -y ladspa-sdk | |
| sudo apt-get install -y libgdk-pixbuf2.0-* | |
| sudo apt-get install -y frei0r-plugins* | |
| sudo apt-get install libdc1394-* | |
| git clone https://github.com/greghendershott/travis-racket.git ~/travis-racket | |
| cat ~/travis-racket/install-racket.sh | bash # pipe to bash not sh! | |
| export PATH="${RACKET_DIR}/bin:${PATH}" #install-racket.sh can't set for us | |
| export DISPLAY=:99.0 | |
| sh -e /etc/init.d/xvfb start | |
| sleep 3 # give xvfb some time to start | |
| raco pkg install --deps search-auto -n video | |
| #raco test -p video | |
| #raco setup --check-pkg-deps --pkgs video | |
| #raco pkg install --deps search-auto cover cover-coveralls | |
| #raco cover -b -f coveralls -d $TRAVIS_BUILD_DIR/coverage . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment