Skip to content

Commit

Permalink
[GitHub Actions] Uplift clang version in post-commit validation (#4581)
Browse files Browse the repository at this point in the history
  • Loading branch information
bader authored Sep 15, 2021
1 parent 6c6d902 commit ab35242
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/linux_post_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
;;
SharedLibs)
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-12 main"
sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-13 main"
sudo apt-get update
sudo apt-get install -y clang-12
sudo apt-get install -y clang-13
export ARGS="--shared-libs"
export CC="clang-12"
export CXX="clang++-12"
export CC="clang-13"
export CXX="clang++-13"
;;
NoAssertions)
export ARGS="--no-assertions"
Expand Down Expand Up @@ -74,4 +74,3 @@ jobs:
with:
name: sycl_linux_${{ matrix.config }}
path: llvm_sycl.tar.gz

0 comments on commit ab35242

Please sign in to comment.