7b96f4c3ce
By default, the date on a file downloaded by youtube-dl is the date the video was originally uploaded to youtube. As a result, items will always be cleared from the cache because they appear to be years old - even though they were just downloaded. Adding the directive "--no-mtime" will make the date on files the date the file was downloaded. See this issue on youtube-dl: https://github.com/rg3/youtube-dl/issues/4667
27 lines
787 B
YAML
27 lines
787 B
YAML
machine:
|
|
environment:
|
|
PATH: $HOME/bin/:$PATH
|
|
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
|
|
|
|
cache_directories:
|
|
- "~/opus"
|
|
- "~/bin"
|
|
- "~/mumbledj/.vendor"
|
|
- "/home/ubuntu/.go_workspace/bin"
|
|
- "/home/ubuntu/.go_workspace/pkg"
|
|
- "/home/ubuntu/.go_workspace/src/github.com/nitrous-io"
|
|
|
|
test:
|
|
override:
|
|
- mumbledj -server=$MUMBLE_IP -port=$MUMBLE_PORT -username=circleci -password=$MUMBLE_PASSWORD -verbose=true -test=true:
|
|
timeout: 180 |