From 8d5d0485027c8c891f09e0869830f5f56b68a8eb Mon Sep 17 00:00:00 2001 From: Arseniy Terekhin Date: Fri, 3 Jan 2025 19:13:40 +0300 Subject: [PATCH] ci: build wheel --- .github/workflows/ci.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d5e5a19..f1ee472 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,12 @@ jobs: - name: 'clang-format' run: | find src include -name '*.cpp' -o -name '*.h' -o -name '*.hpp' | xargs clang-format --Werror -n - # - name: wheel - # run: | - # pip install build - # python -m build . --wheel \ No newline at end of file + - name: 'Install FFmpeg' + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: libavcodec-dev libavdevice-dev libavformat-dev libswscale-dev + version: 1.0 + - name: wheel + run: | + pip install build + python -m build . --wheel \ No newline at end of file