Skip to content

おためし v4l2loopback-dkms #4

おためし v4l2loopback-dkms

おためし v4l2loopback-dkms #4

Workflow file for this run

name: e2e-test
on:
push:
paths-ignore:
- "doc/**"
- "html/**"
- "**.md"
- "THANKS"
- "LICENSE"
- "NOTICE"
jobs:
e2e-test-macos:
strategy:
fail-fast: false
matrix:
name:
- macos_arm64
name: Build momo for ${{ matrix.name }}
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y v4l2loopback-dkms
sudo modprobe v4l2loopback devices=1 video_nr=0 exclusive_caps=1 card_label='VCamera'
- run: python3 run.py ${{ matrix.name }}
- uses: eifinger/setup-rye@v3
with:
version: 'latest'
- run: rye sync
working-directory: ./test
- run: rye run pytest test_momo.py
working-directory: ./test