Skip to content

Commit

Permalink
CI: Ubuntu install gcc-10
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiatka committed Feb 13, 2024
1 parent 6bd76fc commit c4cd6a0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/scripts/Linux/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ sudo apt install libcurl4-nss-dev
sudo apt install i965-va-driver-shaders # instead of i965-va-driver
sudo apt install uuid-dev # Cineform

sudo apt install gcc-10
sudo apt install g++-10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10

get_build_deps_excl() { # $2 - pattern to exclude
apt-cache showsrc "$1" | sed -n '/^Build-Depends:/{s/Build-Depends://;p;q}' | tr ',' '\n' | cut -f 2 -d\ | grep -v "$2"
}
Expand Down

0 comments on commit c4cd6a0

Please sign in to comment.