Skip to content

Commit 388ea9f

Browse files
committed
replace clang-11 with the default pacman clang in the CI
1 parent b5c50a1 commit 388ea9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
sudo apt-get install \
4646
valgrind \
47-
clang-11
47+
clang
4848
4949
- name: Install legacy Intel compiler
5050
if: ${{ matrix.compiler == 'ICC' }}
@@ -68,8 +68,8 @@ jobs:
6868
export CXX=/usr/bin/g++
6969
export CC=/usr/bin/gcc
7070
elif [ ${{ matrix.compiler }} = CLANG ]; then
71-
export CXX=/usr/bin/clang++-11
72-
export CC=/usr/bin/clang-11
71+
export CXX=/usr/bin/clang++
72+
export CC=/usr/bin/clang
7373
elif [ ${{ matrix.compiler }} = ICC ]; then
7474
export CXX=icpc
7575
export CC=icc

0 commit comments

Comments
 (0)