ci: fix failing clang-format-15 via apt.llvm.org (#1490)

This commit is contained in:
Stephan Seitz 2023-01-23 11:46:28 +01:00 committed by GitHub
parent e40e6b641e
commit 372b8c574d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,11 @@ jobs:
submodules: recursive
- name: Install libraries
run: sudo apt install clang-format-15
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo echo "deb http://apt.llvm.org/unstable/ llvm-toolchain-15 main" > sudo tee -a "/etc/apt/sources.list.d/llvm.list"
sudo apt-get update
sudo apt-get install -y clang-format-15
- name: Update Submodules
run: |