feat(CI): add Ubuntu 18.04 to the CI (#3311)

This commit is contained in:
Francesco Borzì
2020-08-18 16:36:16 +02:00
committed by GitHub
parent 9e5c3f78af
commit 1854a3a376
2 changed files with 20 additions and 5 deletions

View File

@@ -25,6 +25,14 @@ time sudo apt-get install -y git lsb-release sudo ccache
time ./acore.sh install-deps
case $COMPILER in
# this is in order to use the "default" clang version of the OS, without forcing a specific version
"clang" )
time sudo apt-get install -y clang
echo "CCOMPILERC=\"clang\"" >> ./conf/config.sh
echo "CCOMPILERCXX=\"clang++\"" >> ./conf/config.sh
;;
"clang6" )
time sudo apt-get install -y clang-6.0
echo "CCOMPILERC=\"clang-6.0\"" >> ./conf/config.sh