diff --git a/contrib/teamcity/setup-debian-buster.sh b/contrib/teamcity/setup-debian-buster.sh --- a/contrib/teamcity/setup-debian-buster.sh +++ b/contrib/teamcity/setup-debian-buster.sh @@ -13,7 +13,6 @@ bsdmainutils build-essential ccache - clang cmake curl g++-aarch64-linux-gnu @@ -82,4 +81,11 @@ apt-key add "${TEAMCITY_DIR}"/llvm.pub add-apt-repository "deb http://apt.llvm.org/buster/ llvm-toolchain-buster-8 main" apt-get update -apt-get install -y clang-format-8 clang-tidy-8 clang-tools-8 + +LLVM_PACKAGES=( + clang-8 + clang-format-8 + clang-tidy-8 + clang-tools-8 +) +DEBIAN_FRONTEND=noninteractive apt-get install -y $(join_by ' ' "${LLVM_PACKAGES[@]}")