diff --git a/docker/build/installers/install_qa_tools.sh b/docker/build/installers/install_qa_tools.sh index b46e725d8e6e3928d56cb08289e43679f6a133fc..aefdaa215b5da96961e99948f1e8e17991c0ed1b 100755 --- a/docker/build/installers/install_qa_tools.sh +++ b/docker/build/installers/install_qa_tools.sh @@ -21,6 +21,18 @@ set -e cd "$(dirname "${BASH_SOURCE[0]}")" +. /tmp/installers/installer_base.sh + +## buildifier ## +PKG_NAME="buildifier" +CHECKSUM="e92a6793c7134c5431c58fbc34700664f101e5c9b1c1fcd93b97978e8b7f88db" +DOWNLOAD_LINK="https://github.com/bazelbuild/buildtools/releases/download/3.0.0/buildifier" +download_if_not_cached "${PKG_NAME}" "${CHECKSUM}" "${DOWNLOAD_LINK}" + +chmod a+x ${PKG_NAME} +cp ${PKG_NAME} /usr/local/bin/ +rm -rf ${PKG_NAME} + apt-get -y update && \ apt-get -y install \ cppcheck \