Skip to content

Commit ab35242

Browse files
authored
[GitHub Actions] Uplift clang version in post-commit validation (#4581)
1 parent 6c6d902 commit ab35242

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/linux_post_commit.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
;;
2929
SharedLibs)
3030
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
31-
sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-12 main"
31+
sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-13 main"
3232
sudo apt-get update
33-
sudo apt-get install -y clang-12
33+
sudo apt-get install -y clang-13
3434
export ARGS="--shared-libs"
35-
export CC="clang-12"
36-
export CXX="clang++-12"
35+
export CC="clang-13"
36+
export CXX="clang++-13"
3737
;;
3838
NoAssertions)
3939
export ARGS="--no-assertions"
@@ -74,4 +74,3 @@ jobs:
7474
with:
7575
name: sycl_linux_${{ matrix.config }}
7676
path: llvm_sycl.tar.gz
77-

0 commit comments

Comments
 (0)