va: Add VA_PICTURE_H264_NON_EXISTING flag #1043
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: ubuntu | |
| permissions: | |
| contents: read | |
| on: [push, pull_request] | |
| env: | |
| CFLAGS: -Wall -Werror | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| compiler: [clang, gcc] | |
| os: [ubuntu-24.04, ubuntu-22.04] | |
| build: [meson, autotools] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| CC: ${{ matrix.compiler }} | |
| DISTRO: ${{ matrix.os }} | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v6 | |
| - name: 'Install toolchain' | |
| if: ${{ (matrix.compiler == 'clang') && (matrix.os == 'ubuntu-22.04') }} | |
| run: .github/workflows/install-clang.sh 15 | |
| - name: 'Install toolchain' | |
| if: ${{ (matrix.compiler == 'clang') && (matrix.os == 'ubuntu-24.04') }} | |
| run: .github/workflows/install-clang.sh 18 | |
| - name: 'Install prerequisites' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libdrm-dev \ | |
| libegl1-mesa-dev \ | |
| libgl1-mesa-dev \ | |
| libx11-dev \ | |
| libx11-xcb-dev \ | |
| libxcb-dri3-dev \ | |
| libxext-dev \ | |
| libxfixes-dev \ | |
| libwayland-dev \ | |
| meson | |
| - name: 'Print compiler version' | |
| run: ${{ matrix.compiler }} --version | |
| - name: 'Configure (meson)' | |
| if: ${{ (matrix.build == 'meson') }} | |
| run: meson setup ./builddir --prefix=/usr | |
| - name: 'Build (meson)' | |
| if: ${{ (matrix.build == 'meson') }} | |
| run: meson compile -C ./builddir || ninja -C ./builddir | |
| - name: 'Install (meson)' | |
| if: ${{ (matrix.build == 'meson') }} | |
| run: sudo meson install -C ./builddir | |
| - name: 'Configure (autotools)' | |
| if: ${{ (matrix.build == 'autotools') }} | |
| run: ./autogen.sh --prefix=/usr | |
| - name: 'Build (autotools)' | |
| if: ${{ (matrix.build == 'autotools') }} | |
| run: make | |
| - name: 'Build and Install (autotools)' | |
| if: ${{ (matrix.build == 'autotools') }} | |
| run: sudo make install |