fix(CI): replace clang-9 with clang-8 (#5877)

This commit is contained in:
Francesco Borzì
2021-05-16 02:25:29 +02:00
committed by GitHub
parent 067c675f3e
commit 8168f9aea0
3 changed files with 13 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ jobs:
modules: without
extra_logs: false
- os: ubuntu-20.04
compiler: clang9
compiler: clang8
modules: without
extra_logs: false
- os: ubuntu-18.04

View File

@@ -53,6 +53,12 @@ case $COMPILER in
echo "CCOMPILERCXX=\"clang++-6.0\"" >> ./conf/config.sh
;;
"clang8" )
time sudo apt-get install -y clang-8
echo "CCOMPILERC=\"clang-8\"" >> ./conf/config.sh
echo "CCOMPILERCXX=\"clang++-8\"" >> ./conf/config.sh
;;
"clang9" )
time sudo apt-get install -y clang-9
echo "CCOMPILERC=\"clang-9\"" >> ./conf/config.sh

View File

@@ -58,6 +58,12 @@ case $COMPILER in
echo "CCOMPILERCXX=\"clang++-6.0\"" >> ./conf/config.sh
;;
"clang8" )
time sudo apt-get install -y clang-8
echo "CCOMPILERC=\"clang-8\"" >> ./conf/config.sh
echo "CCOMPILERCXX=\"clang++-8\"" >> ./conf/config.sh
;;
"clang9" )
time sudo apt-get install -y clang-9
echo "CCOMPILERC=\"clang-9\"" >> ./conf/config.sh