From 45f757902a03785c1c94ee89c0e4fcab6edcc16f Mon Sep 17 00:00:00 2001 From: Rupert Nash Date: Mon, 20 May 2024 09:49:48 +0100 Subject: [PATCH] Actions removed GCC 13 for reasons; install ourselves --- .github/actions/install-hemelb-deps/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/install-hemelb-deps/action.yml b/.github/actions/install-hemelb-deps/action.yml index 5b0385a0f..4f35efb4b 100644 --- a/.github/actions/install-hemelb-deps/action.yml +++ b/.github/actions/install-hemelb-deps/action.yml @@ -20,13 +20,16 @@ runs: steps: - name: Apt update shell: bash - run: sudo apt-get update + run: | + sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y + sudo apt-get update - name: Install Ubuntu-provided dependencies shell: bash run: >- sudo apt-get install -y + gcc-13 libopenmpi-dev libtinyxml-dev libparmetis-dev