From 71d73ff639093b298818a584272d88d9749ce2ee Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Fri, 19 Jan 2024 15:28:18 -0600 Subject: [PATCH] GHA: Add ppa:ubuntu-toolchain-r/test for gcc-10 --- .github/workflows/build-linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 275df80c3fa..d0a9d16254b 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -85,7 +85,8 @@ jobs: apt-get update apt-get install -y build-essential git wget curl sudo unzip zip openjdk-11-jdk autoconf libfreetype6-dev libcups2-dev libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev libasound2-dev libffi-dev file binutils libfontconfig-dev # If we really need gcc-10, we can get it from this PPA: - #sudo add-apt-repository ppa:ubuntu-toolchain-r/test + apt-get install software-properties-common + sudo add-apt-repository ppa:ubuntu-toolchain-r/test - name: 'Checkout the JDK source' uses: actions/checkout@v3