mirror of https://github.com/open-mmlab/mmcv.git
27 lines
578 B
YAML
27 lines
578 B
YAML
name: build_pat
|
|
|
|
on: push
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
MMCV_WITH_OPS: 1
|
|
|
|
jobs:
|
|
build_parrots:
|
|
runs-on: ubuntu-18.04
|
|
container:
|
|
image: ghcr.io/zhouzaida/parrots-mmcv:1.3.4
|
|
credentials:
|
|
username: zhouzaida
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install unittest dependencies
|
|
run: pip install -r requirements/test.txt
|
|
- name: Build and install
|
|
run: rm -rf .eggs && MMCV_WITH_OPS=1 pip install -e .
|