From 44cb4259feca0c73b8045b61089901c453fdb716 Mon Sep 17 00:00:00 2001 From: Alexsander Falcucci Date: Thu, 19 Sep 2024 22:22:03 +0200 Subject: [PATCH] ci: update ci workflow to streamline installation process - update ci workflow to include installation of additional repositories for mesa and graphics drivers --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85d836d..6018334 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,9 +88,15 @@ jobs: - name: install Mesa run: | - sudo add-apt-repository ppa:kisak/kisak-mesa - sudo apt update - sudo apt upgrade + if [[ $RUNNER_OS == "Linux" ]]; then + sudo add-apt-repository ppa:kisak/kisak-mesa + sudo apt update + sudo apt upgrade + + sudo add-apt-repository ppa:oibaf/graphics-drivers + sudo apt update + sudo apt upgrade + fi - name: Install Fonts run: |