Update README.md #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install pre-commit hook | |
run: | | |
pip install pre-commit | |
pre-commit install | |
- name: Linting | |
run: pre-commit run --all-files | |
- name: Check docstring coverage | |
run: | | |
pip install interrogate | |
interrogate -v --ignore-init-method --ignore-module --ignore-nested-functions --ignore-regex "__repr__" --fail-under 80 mmdet | |
build_cpu: | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
python-version: [3.7] | |
torch: [1.3.1, 1.5.1, 1.6.0, 1.7.0, 1.8.0, 1.9.0] | |
include: | |
- torch: 1.3.1 | |
torchvision: 0.4.2 | |
mmcv: "latest+torch1.3.0+cpu" | |
- torch: 1.5.1 | |
torchvision: 0.6.1 | |
mmcv: "latest+torch1.5.0+cpu" | |
- torch: 1.6.0 | |
torchvision: 0.7.0 | |
mmcv: "latest+torch1.6.0+cpu" | |
- torch: 1.7.0 | |
torchvision: 0.8.1 | |
mmcv: "latest+torch1.7.0+cpu" | |
- torch: 1.8.0 | |
torchvision: 0.9.0 | |
mmcv: "latest+torch1.8.0+cpu" | |
- torch: 1.9.0 | |
torchvision: 0.10.0 | |
mmcv: "latest+torch1.9.0+cpu" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Pillow | |
run: pip install Pillow==6.2.2 | |
if: ${{matrix.torchvision == '0.4.2'}} | |
- name: Install PyTorch | |
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html | |
- name: Install MMCV | |
run: | | |
pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cpu/torch${{matrix.torch}}/index.html | |
python -c 'import mmcv; print(mmcv.__version__)' | |
- name: Install unittest dependencies | |
run: | | |
pip install -r requirements/tests.txt -r requirements/optional.txt | |
pip install albumentations>=0.3.2 --no-binary imgaug,albumentations | |
pip install git+https://github.com/cocodataset/panopticapi.git | |
- name: Build and install | |
run: rm -rf .eggs && pip install -e . | |
- name: Run unittests and generate coverage report | |
run: | | |
coverage run --branch --source mmdet -m pytest tests/ | |
coverage xml | |
coverage report -m | |
build_cuda101: | |
runs-on: ubuntu-18.04 | |
container: | |
image: pytorch/pytorch:1.6.0-cuda10.1-cudnn7-devel | |
strategy: | |
matrix: | |
python-version: [3.7] | |
torch: | |
[ | |
1.3.1, | |
1.5.1+cu101, | |
1.6.0+cu101, | |
1.7.0+cu101, | |
1.8.0+cu101, | |
] | |
include: | |
- torch: 1.3.1 | |
torch_version: torch1.3.1 | |
torchvision: 0.4.2 | |
mmcv_link: "torch1.3.0" | |
- torch: 1.5.1+cu101 | |
torch_version: torch1.5.1 | |
torchvision: 0.6.1+cu101 | |
mmcv_link: "torch1.5.0" | |
- torch: 1.6.0+cu101 | |
torch_version: torch1.6.0 | |
torchvision: 0.7.0+cu101 | |
mmcv_link: "torch1.6.0" | |
- torch: 1.7.0+cu101 | |
torch_version: torch1.7.0 | |
torchvision: 0.8.1+cu101 | |
mmcv_link: "torch1.7.0" | |
- torch: 1.8.0+cu101 | |
torch_version: torch1.8.0 | |
torchvision: 0.9.0+cu101 | |
mmcv_link: "torch1.8.0" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system dependencies | |
run: | | |
apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 python${{matrix.python-version}}-dev | |
apt-get clean | |
rm -rf /var/lib/apt/lists/* | |
- name: Install Pillow | |
run: python -m pip install Pillow==6.2.2 | |
if: ${{matrix.torchvision < 0.5}} | |
- name: Install PyTorch | |
run: python -m pip install torch==${{matrix.torch}} torchvision==${{matrix.torchvision}} -f https://download.pytorch.org/whl/torch_stable.html | |
- name: Install dependencies for compiling onnx when python=3.9 | |
run: python -m pip install protobuf && apt-get install libprotobuf-dev protobuf-compiler | |
if: ${{matrix.python-version == '3.9'}} | |
- name: Install mmdet dependencies | |
run: | | |
python -V | |
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/${{matrix.mmcv_link}}/index.html | |
python -m pip install pycocotools | |
python -m pip install -r requirements/tests.txt -r requirements/optional.txt | |
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations | |
python -m pip install git+https://github.com/cocodataset/panopticapi.git | |
python -c 'import mmcv; print(mmcv.__version__)' | |
- name: Build and install | |
run: | | |
rm -rf .eggs | |
python setup.py check -m -s | |
TORCH_CUDA_ARCH_LIST=7.0 pip install . | |
- name: Run unittests and generate coverage report | |
run: | | |
coverage run --branch --source mmdet -m pytest tests/ | |
coverage xml | |
coverage report -m | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
build_cuda102: | |
runs-on: ubuntu-18.04 | |
container: | |
image: pytorch/pytorch:1.9.0-cuda10.2-cudnn7-devel | |
strategy: | |
matrix: | |
python-version: [3.6, 3.7, 3.8, 3.9-dev] | |
torch: [1.9.0+cu102] | |
include: | |
- torch: 1.9.0+cu102 | |
torch_version: torch1.9.0 | |
torchvision: 0.10.0+cu102 | |
mmcv_link: "torch1.9.0" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install python-dev | |
run: apt-get update && apt-get install -y python${{matrix.python-version}}-dev | |
if: ${{matrix.python-version != '3.9-dev'}} | |
- name: Install system dependencies | |
run: | | |
apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 | |
apt-get clean | |
rm -rf /var/lib/apt/lists/* | |
- name: Install Pillow | |
run: python -m pip install Pillow==6.2.2 | |
if: ${{matrix.torchvision < 0.5}} | |
- name: Install PyTorch | |
run: python -m pip install torch==${{matrix.torch}} torchvision==${{matrix.torchvision}} -f https://download.pytorch.org/whl/torch_stable.html | |
- name: Install dependencies for compiling onnx when python=3.9 | |
run: python -m pip install protobuf && apt-get update && apt-get -y install libprotobuf-dev protobuf-compiler cmake | |
if: ${{matrix.python-version == '3.9-dev'}} | |
- name: Install mmdet dependencies | |
run: | | |
python -V | |
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu102/${{matrix.mmcv_link}}/index.html | |
python -m pip install pycocotools | |
python -m pip install -r requirements/tests.txt -r requirements/optional.txt | |
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations | |
python -m pip install git+https://github.com/cocodataset/panopticapi.git | |
python -c 'import mmcv; print(mmcv.__version__)' | |
- name: Build and install | |
run: | | |
rm -rf .eggs | |
python setup.py check -m -s | |
TORCH_CUDA_ARCH_LIST=7.0 pip install . | |
- name: Run unittests and generate coverage report | |
run: | | |
coverage run --branch --source mmdet -m pytest tests/ | |
coverage xml | |
coverage report -m | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
files: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false |