From ad71239134d29e86bbb7574b70764f0d1ca7dfc8 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Wed, 5 Apr 2023 08:36:53 +0200 Subject: [PATCH] CI Linux: remove AOM U18 compat --- .github/scripts/Linux/download_build_ffmpeg.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/scripts/Linux/download_build_ffmpeg.sh b/.github/scripts/Linux/download_build_ffmpeg.sh index f409ec7ab..a229d793f 100755 --- a/.github/scripts/Linux/download_build_ffmpeg.sh +++ b/.github/scripts/Linux/download_build_ffmpeg.sh @@ -4,11 +4,7 @@ install_aom() {( git clone --depth 1 https://aomedia.googlesource.com/aom mkdir -p aom/build cd aom/build - if [ "$(lsb_release -rs)" = 18.04 ]; then - CC=gcc-10 CXX=g++-10 cmake -DBUILD_SHARED_LIBS=1 .. - else - cmake -DBUILD_SHARED_LIBS=1 .. - fi + cmake -DBUILD_SHARED_LIBS=1 .. cmake --build . --parallel sudo cmake --install . )}