Skip to content

Commit

Permalink
AppImage: build our own libva
Browse files Browse the repository at this point in the history
Libva nees to be at least as recent as the host system's VA-API
hardware drivers. (*_drv_video.so)
  • Loading branch information
gschintgen committed Apr 22, 2024
1 parent 9288775 commit 888ddb8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,11 @@ jobs:
libopus-dev \
libpulse-dev \
libssl-dev \
libva-dev \
libvdpau-dev \
libwayland-dev \
libx11-dev \
libx11-xcb-dev \
libxcb-dri3-dev \
libxcb-shm0-dev \
libxcb-xfixes0-dev \
libxcb1-dev \
Expand Down Expand Up @@ -376,6 +377,17 @@ jobs:
with:
python-version: '3.11'

- name: Build latest libva
timeout-minutes: 5
run: |
echo "nproc: $(nproc)"
git clone https://github.com/intel/libva.git
cd libva
./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --enable-x11 --without-legacy
make -j $(expr $(nproc) - 1) # use all but one core
sudo make install
- name: Build Linux
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
Expand Down

0 comments on commit 888ddb8

Please sign in to comment.