Skip to content

Commit 93b6d57

Browse files
authored
[CI] Use llvm-toolchain-focal-17/ on the main branch (#2104)
It is a temporary change to enable back CI until we change LLVM version Signed-off-by: Sidorov, Dmitry <dmitry.sidorov@intel.com>
1 parent 201b782 commit 93b6d57

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/check-code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# launched, so, we need to setup llvm package to perform cmake
6565
# configuration step to generate that database
6666
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
67-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
67+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" | sudo tee -a /etc/apt/sources.list
6868
sudo apt-get update
6969
sudo apt-get install -yqq \
7070
clang-format-${{ env.LLVM_VERSION }} clang-tidy-${{ env.LLVM_VERSION }} \

.github/workflows/check-in-tree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
5353
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
54-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
54+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" | sudo tee -a /etc/apt/sources.list
5555
echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
5656
sudo apt-get update
5757
sudo apt-get -yq --no-install-suggests --no-install-recommends install \

.github/workflows/check-out-of-tree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
curl -L "https://apt.llvm.org/llvm-snapshot.gpg.key" | sudo apt-key add -
4646
curl -L "https://packages.lunarg.com/lunarg-signing-key-pub.asc" | sudo apt-key add -
47-
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal main" | sudo tee -a /etc/apt/sources.list
47+
echo "deb https://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" | sudo tee -a /etc/apt/sources.list
4848
echo "deb https://packages.lunarg.com/vulkan focal main" | sudo tee -a /etc/apt/sources.list
4949
sudo apt-get update
5050
sudo apt-get -yq --no-install-suggests --no-install-recommends install \

0 commit comments

Comments
 (0)