[libc++] Install clang-format on CI nodes

This commit is contained in:
Louis Dionne 2020-12-11 14:06:24 -05:00
parent 658dc21c2d
commit 202df6870e
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y bash curl RUN apt-get update && apt-get install -y bash curl
# Install various tools used by the build or the test suite # Install various tools used by the build or the test suite
RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb clang-format
RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits
# Install the most recently released LLVM # Install the most recently released LLVM

View File

@ -10,7 +10,7 @@ source secrets.env
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install the required tools to run CI # Install the required tools to run CI
brew install sphinx-doc python3 ninja cmake buildkite/buildkite/buildkite-agent brew install sphinx-doc python3 ninja cmake clang-format buildkite/buildkite/buildkite-agent
CFG_DIR="$(brew --prefix)/etc/buildkite-agent" CFG_DIR="$(brew --prefix)/etc/buildkite-agent"