"model_cards/voidful/albert_chinese_small/README.md" did not exist on "c52716d46cb1393f8fb39cc6ee6cc97aaf531fb3"
.travis.yml 1.48 KB
Newer Older
1
dist: bionic  # ubuntu 18.04
Kai Chen's avatar
Kai Chen committed
2
3
4
5
6
language: python

python:
  - "3.5"
  - "3.6"
7
  - "3.7"
Kai Chen's avatar
Kai Chen committed
8

9
env: CUDA=10.1.105-1 CUDA_SHORT=10.1 UBUNTU_VERSION=ubuntu1804 FORCE_CUDA=1
10
cache: pip
Jirka Borovec's avatar
Jirka Borovec committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

# Ref to CUDA installation in Travis: https://github.com/jeremad/cuda-travis
before_install:
  - INSTALLER=cuda-repo-${UBUNTU_VERSION}_${CUDA}_amd64.deb
  - wget http://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/${INSTALLER}
  - sudo dpkg -i ${INSTALLER}
  - wget https://developer.download.nvidia.com/compute/cuda/repos/${UBUNTU_VERSION}/x86_64/7fa2af80.pub
  - sudo apt-key add 7fa2af80.pub
  - sudo apt update -qq
  - sudo apt install -y cuda-${CUDA_SHORT/./-} cuda-cufft-dev-${CUDA_SHORT/./-}
  - sudo apt clean
  - CUDA_HOME=/usr/local/cuda-${CUDA_SHORT}
  - LD_LIBRARY_PATH=${CUDA_HOME}/lib64:${CUDA_HOME}/include:${LD_LIBRARY_PATH}
  - PATH=${CUDA_HOME}/bin:${PATH}

install:
27
28
  - pip install Pillow==6.2.2  # remove this line when torchvision>=0.5
  - pip install Cython torch==1.2 torchvision==0.4.0  # TODO: fix CI for pytorch>1.2
29
  - pip install "git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI"
Jirka Borovec's avatar
Jirka Borovec committed
30
31
  - pip install -r requirements.txt

32
before_script:
Jirka Borovec's avatar
Jirka Borovec committed
33
34
  - flake8 .
  - isort -rc --check-only --diff mmdet/ tools/ tests/
Kai Chen's avatar
Kai Chen committed
35
  - yapf -r -d --style .style.yapf mmdet/ tools/ tests/ configs/
36
37

script:
Jirka Borovec's avatar
Jirka Borovec committed
38
39
  - python setup.py check -m -s
  - python setup.py build_ext --inplace
40
  - coverage run --source mmdet -m py.test -v --xdoctest-modules tests mmdet
Jirka Borovec's avatar
Jirka Borovec committed
41
42

after_success:
43
  - coverage report