This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mumbledj/circle.yml

24 lines
767 B
YAML
Raw Normal View History

2015-08-12 20:19:28 +02:00
machine:
environment:
PATH: $PATH:$HOME/bin/
LD_RUN_PATH: $LD_RUN_PATH:$HOME/opus/lib
LD_LIBRARY_PATH: $LD_LIBRARY_PATH:$HOME/opus/lib
PKG_CONFIG_PATH: $PKG_CONFIG_PATH:$HOME/opus/lib/pkgconfig
dependencies:
pre:
- bash install-dependencies.sh
override:
- make
- make install
2015-08-12 20:29:22 +02:00
cache_directories:
2015-08-12 20:54:56 +02:00
- "$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"
2015-08-12 20:19:28 +02:00
test:
override:
2015-08-12 20:29:22 +02:00
- mumbledj -server=$MUMBLE_IP -port=$MUMBLE_PORT -username=circleci -password=$MUMBLE_PASSWORD -verbose=true -test=true:
timeout: 180