AIL-framework/.travis.yml

36 lines
666 B
YAML
Raw Normal View History

2016-01-19 11:41:03 +01:00
language: python
python:
- "2.7"
sudo: required
2016-07-25 11:38:41 +02:00
cache: pip
2016-01-19 11:41:03 +01:00
env:
- AIL_HOME=$TRAVIS_BUILD_DIR AIL_BIN=$TRAVIS_BUILD_DIR/bin/ \
AIL_FLASK=$TRAVIS_BUILD_DIR/var/www/ AIL_REDIS=$TRAVIS_BUILD_DIR/redis/src/ \
AIL_LEVELDB=$TRAVIS_BUILD_DIR/redis-leveldb/ PATH=$AIL_HOME:$AIL_REDIS:$AIL_LEVELDB:$PATH
install:
2016-07-25 11:38:41 +02:00
- ./installing_deps.sh
2016-01-19 11:41:03 +01:00
script:
- pushd bin
- ./launch_redis.sh
- ./launch_lvldb.sh
- ./launch_logs.sh
- ./launch_queues.sh
- ./launch_scripts.sh
- sleep 120
- ./Shutdown.py
- popd
2016-01-19 12:01:45 +01:00
- find logs/* -exec cat {} \;
2016-01-19 11:41:03 +01:00
notifications:
email:
on_success: change
on_failure: change