更换文档检测模型
This commit is contained in:
35
paddle_detection/.travis.yml
Normal file
35
paddle_detection/.travis.yml
Normal file
@@ -0,0 +1,35 @@
|
||||
language: cpp
|
||||
cache: ccache
|
||||
sudo: required
|
||||
dist: trusty
|
||||
services:
|
||||
- docker
|
||||
os:
|
||||
- linux
|
||||
env:
|
||||
- JOB=PRE_COMMIT
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- git
|
||||
- python
|
||||
- python-pip
|
||||
- python2.7-dev
|
||||
ssh_known_hosts: 13.229.163.131
|
||||
before_install:
|
||||
- sudo pip install -U virtualenv pre-commit pip -i https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
- docker pull paddlepaddle/paddle:latest
|
||||
- git pull https://github.com/PaddlePaddle/PaddleDetection develop
|
||||
|
||||
script:
|
||||
- exit_code=0
|
||||
- .travis/precommit.sh || exit_code=$(( exit_code | $? ))
|
||||
# - docker run -i --rm -v "$PWD:/py_unittest" paddlepaddle/paddle:latest /bin/bash -c
|
||||
# 'cd /py_unittest; sh .travis/unittest.sh' || exit_code=$(( exit_code | $? ))
|
||||
- if [ $exit_code -eq 0 ]; then true; else exit 1; fi;
|
||||
|
||||
notifications:
|
||||
email:
|
||||
on_success: change
|
||||
on_failure: always
|
||||
Reference in New Issue
Block a user