Spaces:
Running
on
L40S
Running
on
L40S
File size: 578 Bytes
d7e58f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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 .
|