Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,391 Bytes
3040ac4 |
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
name: Pip
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
python-version: ["3.9", "3.10"]
runs-on: ${{ matrix.platform }}
# runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade setuptools and wheel
run: |
pip install --upgrade setuptools wheel
- name: Install dependencies on Ubuntu
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install libopencv-dev -y
- name: Install dependencies on macOS
if: runner.os == 'macOS'
run: |
brew update
brew install opencv
- name: Install dependencies on Windows
if: runner.os == 'Windows'
run: |
choco install opencv -y
- name: Add requirements
run: python -m pip install --upgrade wheel setuptools
- name: Install Python dependencies
run: |
pip install pytest
pip install -r requirements.txt
sudo apt-get update && sudo apt-get install ffmpeg libsm6 libxext6 -y
- name: Build and install
run: pip install .
- name: Test
run: python -m pytest
|