Skip to content

Commit

Permalink
Clean up ffmpeg build dependencies
Browse files Browse the repository at this point in the history
TIL you shouldn't really run `apt-get upgrade` in GitHub CI.
Also removed some packages that are guaranteed to be installed already.
  • Loading branch information
FreezyLemon committed Oct 12, 2023
1 parent 4a4ed7d commit b708418
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-ffmpeg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:

- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install -y make nasm gcc mingw-w64
sudo apt-get update
sudo apt-get install nasm mingw-w64
- name: Build
run: osu.Framework.NativeLibs/scripts/ffmpeg/build-win.sh
Expand Down Expand Up @@ -111,8 +111,8 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install -y git curl gcc make nasm pkg-config libva-dev libvdpau-dev
sudo apt-get update
sudo apt-get install nasm libva-dev libvdpau-dev
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit b708418

Please sign in to comment.