mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-15 00:05:06 +00:00
ci: Purge unwanted compilers
This commit is contained in:
parent
4a37e8e09e
commit
03087257df
1 changed files with 2 additions and 1 deletions
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
@ -369,6 +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 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]}
|
||||
|
@ -377,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 lldb 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
|
||||
|
|
Loading…
Reference in a new issue