ci: Do "apt-get update" before installing anything

The existing package listings may be stale and pointing at files
that no longer are present.
This commit is contained in:
Martin Storsjo 2023-12-21 12:49:04 +02:00
parent 5fd541491b
commit 4753071b9c
1 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ jobs:
make -j$(nproc) CFLAGS="-g -O2 -Werror" CXXFLAGS="-g -O2 -Werror"
- name: Run tests
run: |
sudo apt-get install --no-install-recommends ffmpeg
sudo apt-get update && sudo apt-get install --no-install-recommends ffmpeg
./test/run-test.sh
linux-cmake:
@ -28,7 +28,7 @@ jobs:
cmake --build build
- name: Run tests
run: |
sudo apt-get install --no-install-recommends ffmpeg
sudo apt-get update && sudo apt-get install --no-install-recommends ffmpeg
cd build
../test/run-test.sh
@ -45,7 +45,7 @@ jobs:
make -j$(nproc)
- name: Run tests
run: |
sudo apt-get install --no-install-recommends ffmpeg
sudo apt-get update && sudo apt-get install --no-install-recommends ffmpeg
./test/run-test.sh
linux-sanitizers-clang-cmake:
@ -60,7 +60,7 @@ jobs:
cmake --build build
- name: Run tests
run: |
sudo apt-get install --no-install-recommends ffmpeg
sudo apt-get update && sudo apt-get install --no-install-recommends ffmpeg
cd build
../test/run-test.sh
@ -93,7 +93,7 @@ jobs:
steps:
- name: Install cross compiler
run: |
sudo apt-get install g++-mingw-w64-x86-64
sudo apt-get update && sudo apt-get install g++-mingw-w64-x86-64
- name: Checkout sources
uses: actions/checkout@v4
- name: Build
@ -107,7 +107,7 @@ jobs:
steps:
- name: Install cross compiler
run: |
sudo apt-get install g++-mingw-w64-x86-64
sudo apt-get update && sudo apt-get install g++-mingw-w64-x86-64
- name: Checkout sources
uses: actions/checkout@v4
- name: Build
@ -209,7 +209,7 @@ jobs:
path: ffmpeg
- name: Build FFmpeg
run: |
sudo apt-get install -y nasm
sudo apt-get update && sudo apt-get install -y nasm
cd ffmpeg
PKG_CONFIG_PATH=$(pwd)/../prefix/lib/pkgconfig ./configure --enable-libfdk-aac --enable-nonfree
make -j$(nproc)