Cleaned up circleci files
This commit is contained in:
parent
264087a248
commit
644fe0ac24
26
.travis.yml
26
.travis.yml
|
@ -1,26 +0,0 @@
|
||||||
language: go
|
|
||||||
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/opus
|
|
||||||
- $HOME/bin
|
|
||||||
- $HOME/gopath/bin
|
|
||||||
- $HOME/gopath/pkg
|
|
||||||
- $HOME/gopath/src/github.com/nitrous-io
|
|
||||||
- $HOME/gopath/src/github.com/MichaelOultram/mumbledj/.vendor
|
|
||||||
|
|
||||||
before_script:
|
|
||||||
- export PATH=$PATH:$HOME/bin/
|
|
||||||
- export LD_RUN_PATH=$LD_RUN_PATH:$HOME/opus/lib
|
|
||||||
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/opus/lib
|
|
||||||
- export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/opus/lib/pkgconfig
|
|
||||||
- bash install-dependencies.sh
|
|
||||||
|
|
||||||
script:
|
|
||||||
- make
|
|
||||||
- make install
|
|
||||||
|
|
||||||
after_success:
|
|
||||||
- ffmpeg -version
|
|
||||||
- youtube-dl --output ~/.mumbledj/songs/QcIy9NiNbmo.m4a --format m4a --prefer-ffmpeg -4 --verbose http://www.youtube.com/watch?v=QcIy9NiNbmo
|
|
||||||
- mumbledj -server=$MUMBLE_IP -port=$MUMBLE_PORT -username=travis -password=$MUMBLE_PASSWORD -verbose=true -test=true
|
|
|
@ -7,11 +7,7 @@ machine:
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
pre:
|
pre:
|
||||||
- sudo apt-get remove -y ffmpeg ffprobe
|
|
||||||
- sudo whereis ffmpeg
|
|
||||||
- bash install-dependencies.sh
|
- bash install-dependencies.sh
|
||||||
- sudo pip install youtube-dl
|
|
||||||
- ffmpeg -version
|
|
||||||
|
|
||||||
override:
|
override:
|
||||||
- make
|
- make
|
||||||
|
@ -27,6 +23,5 @@ dependencies:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
override:
|
override:
|
||||||
- youtube-dl --output ~/.mumbledj/songs/QcIy9NiNbmo.m4a --format m4a --prefer-ffmpeg -v http://www.youtube.com/watch?v=QcIy9NiNbmo
|
|
||||||
- mumbledj -server=$MUMBLE_IP -port=$MUMBLE_PORT -username=circleci -password=$MUMBLE_PASSWORD -verbose=true -test=true:
|
- mumbledj -server=$MUMBLE_IP -port=$MUMBLE_PORT -username=circleci -password=$MUMBLE_PASSWORD -verbose=true -test=true:
|
||||||
timeout: 180
|
timeout: 180
|
|
@ -17,6 +17,15 @@ else
|
||||||
echo 'Using cached version of ffmpeg.';
|
echo 'Using cached version of ffmpeg.';
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# check to see if youtube-dl is installed
|
||||||
|
if [ ! -f "$HOME/bin/youtube-dl" ]; then
|
||||||
|
echo 'Installing youtube-dl'
|
||||||
|
curl https://yt-dl.org/latest/youtube-dl -o ~/bin/youtube-dl
|
||||||
|
chmod a+rx ~/bin/youtube-dl
|
||||||
|
else
|
||||||
|
echo 'Using cached version of youtube-dl.';
|
||||||
|
fi
|
||||||
|
|
||||||
# check to see if opus is installed
|
# check to see if opus is installed
|
||||||
if [ ! -d "$HOME/opus/lib" ]; then
|
if [ ! -d "$HOME/opus/lib" ]; then
|
||||||
echo 'Installing opus'
|
echo 'Installing opus'
|
||||||
|
|
Reference in a new issue