video_core: prefer discrete gpu if available (#116)

* video_core: prefer discrete gpu if available

* ci: Upgrade to clang format 17

* rewrite w\o std::zip usage

---------

Co-authored-by: raphaelthegreat <47210458+raphaelthegreat@users.noreply.github.com>
This commit is contained in:
psucien 2024-04-29 23:19:12 +02:00 committed by GitHub
parent d496fab492
commit 2696733cad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 37 additions and 14 deletions

View file

@ -17,7 +17,11 @@ jobs:
with:
fetch-depth: 0
- name: Install
run: sudo apt-get install clang-format-15
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main'
sudo apt update
sudo apt install clang-format-17
- name: Build
env:
COMMIT_RANGE: ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}