CI Linux: remove AOM U18 compat

This commit is contained in:
Martin Pulec
2023-04-05 08:36:53 +02:00
parent 8cb7e7e779
commit ad71239134

View File

@@ -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 .
)}