Run test on Linux and Windows

This commit is contained in:
henryruhs 2023-06-05 15:54:10 +02:00
parent a58a376b87
commit 8b774af1ac

View File

@ -20,12 +20,10 @@ jobs:
matrix: matrix:
ubuntu: ubuntu:
os: ubuntu-latest os: ubuntu-latest
run-headless: python run.py -f=.github/examples/face.jpg -t=.github/examples/target.mp4 -o=.github/examples/output.mp4 run: python run.py -f=.github/examples/face.jpg -t=.github/examples/target.mp4 -o=.github/examples/output.mp4
run-validate: ffmpeg -i .github/examples/snapshot.mp4 -i .github/examples/output.mp4 -filter_complex psnr -f null -
windows: windows:
os: windows-latest os: windows-latest
run-headless: python run.py -f .github\examples\face.jpg -t .github\examples\target.mp4 -o .github\examples\output.mp4 run: python run.py -f .github\examples\face.jpg -t .github\examples\target.mp4 -o .github\examples\output.mp4
run-validate: ffmpeg -i .github\examples\snapshot.mp4 -i .github/examples\output.mp4 -filter_complex psnr -f null -
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -37,5 +35,5 @@ jobs:
python-version: 3.9 python-version: 3.9
- run: pip install -r requirements.txt gdown - run: pip install -r requirements.txt gdown
- run: gdown 13QpWFWJ37EB-nHrEOY64CEtQWY-tz7DZ - run: gdown 13QpWFWJ37EB-nHrEOY64CEtQWY-tz7DZ
- run: ${{ matrix.run-headless }} - run: ${{ matrix.run }}
- run: ${{ matrix.run-validate }}