[Fix] update mmdet maximum version to enable latest mmdet-3.1.0 #567
Workflow file for this run
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: pr_stage_test | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'README_zh-CN.md' | |
- 'docs/**' | |
- 'demo/**' | |
- '.dev_scripts/**' | |
- '.circleci/**' | |
- 'projects/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_cpu: | |
runs-on: ubuntu-18.04 | |
strategy: | |
matrix: | |
python-version: [3.7] | |
include: | |
- torch: 1.8.1 | |
torchvision: 0.9.1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: pip install pip --upgrade | |
- 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 MMEngine | |
run: pip install git+https://github.com/open-mmlab/mmengine.git@main | |
- name: Install MMCV | |
run: | | |
pip install -U openmim | |
mim install 'mmcv >= 2.0.0rc2' | |
- name: Install MMDet | |
run: pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | |
- name: Install other dependencies | |
run: pip install -r requirements/tests.txt | |
- name: Build and install | |
run: rm -rf .eggs && pip install -e . | |
- name: Run unittests and generate coverage report | |
run: | | |
coverage run --branch --source mmrotate -m pytest tests/ | |
coverage xml | |
coverage report -m | |
build_cu102: | |
runs-on: ubuntu-18.04 | |
container: | |
image: pytorch/pytorch:1.8.1-cuda10.2-cudnn7-devel | |
strategy: | |
matrix: | |
python-version: [3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: pip install pip --upgrade | |
- name: Fetch GPG keys | |
run: | | |
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub | |
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub | |
- name: Install Python-dev | |
run: apt-get update && apt-get install -y python${{matrix.python-version}}-dev | |
if: ${{matrix.python-version != 3.9}} | |
- name: Install system dependencies | |
run: | | |
apt-get update | |
apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libxrender-dev | |
- name: Install mmrotate dependencies | |
run: | | |
pip install git+https://github.com/open-mmlab/mmengine.git@main | |
pip install -U openmim | |
mim install 'mmcv >= 2.0.0rc2' | |
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | |
pip install -r requirements/tests.txt | |
- name: Build and install | |
run: | | |
python setup.py check -m -s | |
TORCH_CUDA_ARCH_LIST=7.0 pip install -e . | |
build_windows: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-2022] | |
python: [3.7] | |
platform: [cpu] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip | |
- name: Install lmdb | |
run: pip install lmdb | |
- name: Install PyTorch | |
run: pip install torch==1.8.1+${{matrix.platform}} torchvision==0.9.1+${{matrix.platform}} -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html | |
- name: Install mmrotate dependencies | |
run: | | |
pip install git+https://github.com/open-mmlab/mmengine.git@main | |
pip install -U openmim | |
mim install 'mmcv >= 2.0.0rc2' | |
pip install pycocotools | |
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | |
pip install -r requirements/tests.txt | |
- name: Build and install | |
run: | | |
pip install -e . | |
- name: Run unittests and generate coverage report | |
run: | | |
pytest tests/ |