FFMPEG 7 + cuda 12.9 #324
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: C/C++ CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| make cmake ffmpeg \ | |
| libavcodec-dev \ | |
| libavfilter-dev \ | |
| libavformat-dev \ | |
| libavutil-dev \ | |
| libswresample-dev \ | |
| libavdevice-dev | |
| - name: Upgrade pip and install Python dependencies | |
| run: | | |
| pip3 install --upgrade pip setuptools wheel | |
| pip3 install numpy cython | |
| - name: Configure CMake | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake .. -DUSE_CUDA=0 | |
| - name: Build C++ core | |
| run: | | |
| cd build | |
| make -j$(nproc) | |
| - name: Install decord Python bindings | |
| run: | | |
| cd python | |
| pip3 install . | |
| - name: Sanity test | |
| run: python3 -c "import decord; print(decord.__version__)" |