Skip to content

Commit

Permalink
fix: steam deck CI should now have ffmpeg dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaskowicz1 committed Apr 26, 2024
1 parent f130720 commit 9f96cbd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,17 @@ jobs:
- name: Checkout Hexwave
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2

- name: Add ffmpeg6
- name: Install FFmpeg dependencies
run: sudo apt-get update -qq && sudo apt-get -y install autoconf automake libass-dev libfreetype6-dev libgnutls28-dev libmp3lame-dev libsdl2-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev libxcb-xfixes0-dev meson ninja-build pkg-config texinfo yasm zlib1g-dev

- name: Install FFmpeg 6.0
run: wget https://ffmpeg.org/releases/ffmpeg-6.0.1.tar.xz && tar -xvf ffmpeg-6.0.1.tar.xz && cd ffmpeg-6.0.1 && ./configure && ./make && sudo make install

- name: Read FFmpeg Version
run: ffmpeg -version

- name: Install apt packages
run: sudo sed -i 's/azure\.//' /etc/apt/sources.list && sudo apt update && sudo apt install -y ${{ matrix.cfg.package }} pkg-config libavcodec-dev libavformat-dev libswscale-dev xorg-dev
run: sudo sed -i 's/azure\.//' /etc/apt/sources.list && sudo apt update && sudo apt install -y ${{ matrix.cfg.package }} libavcodec-dev libavformat-dev libswscale-dev xorg-dev

- name: Generate CMake
run: cmake -B build
Expand Down

0 comments on commit 9f96cbd

Please sign in to comment.