ci: Shrink the purge a bit

This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2023-05-14 01:42:28 +02:00 committed by Xaymar
parent 03087257df
commit f315544808
1 changed files with 2 additions and 2 deletions

View File

@ -369,7 +369,7 @@ jobs:
git
IFS=$'-' compiler=($(echo "${{ matrix.compiler }}")) # ToDo: Can this be done without invoking a sub-shell?
if [[ "${compiler[0]}" == "GCC" ]]; then
sudo apt-get purge "gcc*" "g++*"
sudo apt-get purge "gcc" "g++"
sudo apt-get install \
binutils gcc-${compiler[1]} g++-${compiler[1]}
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${compiler[1]} 800 --slave /usr/bin/g++ g++ /usr/bin/g++-${compiler[1]}
@ -378,7 +378,7 @@ jobs:
echo "CMAKE_C_FLAGS=-fuse-ld=ld" >> "$GITHUB_ENV"
echo "CMAKE_CXX_FLAGS=-fuse-ld=ld" >> "$GITHUB_ENV"
elif [[ "${compiler[0]}" == "Clang" ]]; then
sudo apt-get purge "*clang*" "*clangd*" "*clang++*" "lld*" "*clang-format*" "*clang-tidy*"
sudo apt-get purge "clang" "clangd" "clang++" "lld" "clang-format" "clang-tidy"
curl -jLo /tmp/llvm.sh "https://apt.llvm.org/llvm.sh"
chmod +x /tmp/llvm.sh
sudo /tmp/llvm.sh ${compiler[1]} all