Skip to content

Commit

Permalink
ci: update ci workflow to streamline installation process
Browse files Browse the repository at this point in the history
- update ci workflow to include installation of additional repositories for mesa and graphics drivers
  • Loading branch information
falcucci committed Sep 19, 2024
1 parent ee6f006 commit 44cb425
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 44cb425

Please sign in to comment.