From cb226d877b8fd041be17be12b8fcf822dff8d6c0 Mon Sep 17 00:00:00 2001 From: Chris Cranford Date: Sun, 26 May 2024 19:14:07 -0400 Subject: [PATCH] GH-371 Test fix gcc install --- .github/actions/linux-deps/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/linux-deps/action.yml b/.github/actions/linux-deps/action.yml index f30c645f..3ddfdc95 100644 --- a/.github/actions/linux-deps/action.yml +++ b/.github/actions/linux-deps/action.yml @@ -7,6 +7,8 @@ runs: - name: Install GCC (Linux) shell: sh run: | + sudo apt-get update + sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt-get install gcc-13 g++-13 -y sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100