We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd67f46 commit a47637eCopy full SHA for a47637e
.azure.yml
@@ -21,7 +21,15 @@ stages:
21
with_catch2: false
22
23
- script: |
24
- make style formatter=clang-format-12 check=1
+ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
25
+ echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main" | sudo tee -a /etc/apt/sources.list.d/llvm.list
26
+
27
+ sudo apt-get update
28
+ sudo apt-get install -y clang-format-13
29
+ displayName: 'Dependencies'
30
31
+ - script: |
32
+ make style formatter=clang-format-13 check=1
33
displayName: 'Style'
34
35
- stage: Linux
0 commit comments