Lines Matching full:install

36 RUN apt-get update && apt-get install -y bash curl
38 # Install various tools used by the build or the test suite
39 RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils pytho…
41 # Install dependencies required to run the LLDB data formatter tests
42 RUN apt-get update && apt-get install -y python3 python3-dev libpython3-dev uuid-dev libncurses5-de…
45 RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \
54 # Install Clang <latest>, <latest-1> and ToT, which are the ones we support.
55 # We also install <latest-2> because we need to support the "latest-1" of the
62 RUN apt-get update && apt-get install -y lsb-release wget software-properties-common
76 # Install clang-format; always use the lastest stable branch.
78 RUN apt-get update && apt-get install -y clang-format-$(($LLVM_HEAD_VERSION - 2)) clang-format-$(($…
82 # Install clang-tidy
84 RUN apt-get update && apt-get install -y clang-tidy-$(($LLVM_HEAD_VERSION - 1)) clang-tidy-$LLVM_HE…
87 # Install llvm-dev and libclang-dev to compile custom clang-tidy checks
88 RUN apt-get update && apt-get install -y llvm-$(($LLVM_HEAD_VERSION - 1))-dev llvm-$(($LLVM_HEA…
91 # TODO LLVM16 Don't install llvm-16-dev explicitly
92 RUN apt-get update && apt-get install -y llvm-16-dev libclang-16-dev
94 # Install the most recent GCC, like clang install the previous version as a transition.
96 RUN apt-get update && apt install -y gcc-$((GCC_LATEST_VERSION - 1)) g++-$((GCC_LATEST_VERSION - 1))
97 RUN apt-get update && apt install -y gcc-$GCC_LATEST_VERSION g++-$GCC_LATEST_VERSION
99 # Install a recent CMake
100 …b.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-linux-x86_64.sh -O /tmp/install-cmake.sh
101 RUN bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
102 RUN rm /tmp/install-cmake.sh
106 RUN apt-get update && apt-get install -y sudo
112 # Install the Buildkite agent and dependencies. This must be done as non-root
114 RUN bash -c "$(curl -sL https://raw.githubusercontent.com/buildkite/agent/main/install.sh)"