Skip to content

Commit

Permalink
Fix coverage CI: apt install llvm
Browse files Browse the repository at this point in the history
  • Loading branch information
casavaca committed Jan 16, 2024
1 parent 88c8308 commit 1a7926d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
- name: Setup Environment
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt update -qq
sudo apt install -y --no-install-recommends libglfw3 libglfw3-dev libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxfixes-dev
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends libglfw3 libglfw3-dev libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libxext-dev libxfixes-dev
# install xvfb for testing
sudo apt install -y xvfb
sudo apt-get install -y xvfb
# install llvm for coverage
sudo apt install -y llvm-15
sudo apt-get install -y llvm
- name: early check if required binaries are present
if: ${{ matrix.os == 'ubuntu-latest' }}
Expand Down

0 comments on commit 1a7926d

Please sign in to comment.