2020-09-23 21:20:03 +08:00
|
|
|
#===----------------------------------------------------------------------===##
|
|
|
|
#
|
|
|
|
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#
|
|
|
|
#===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
#
|
|
|
|
# This Dockerfile describes the base image used to run the various libc++
|
|
|
|
# build bots. By default, the image runs the Buildkite Agent, however one
|
|
|
|
# can also just start the image with a shell to debug CI failures.
|
|
|
|
#
|
|
|
|
# To start a Buildkite Agent, run it as:
|
|
|
|
# $ docker run --env-file secrets.env -it $(docker build -q .)
|
|
|
|
#
|
|
|
|
# The environment variables in `secrets.env` must be replaced by the actual
|
|
|
|
# tokens for this to work. These should obviously never be checked in.
|
|
|
|
#
|
|
|
|
# To start a shell in the Docker image, use:
|
|
|
|
# $ docker run -it --volume "$(git rev-parse --show-toplevel):/llvm" --workdir "/llvm" $(docker build -q .) bash
|
|
|
|
#
|
|
|
|
# This will fire up the Docker container and mount the root of the monorepo
|
|
|
|
# as /llvm in the container. Be careful, the state in /llvm is shared between
|
|
|
|
# the container and the host machine.
|
|
|
|
#
|
2020-09-30 00:48:44 +08:00
|
|
|
# Finally, a pre-built version of this image is available on DockerHub as
|
|
|
|
# ldionne/libcxx-builder. To use the pre-built version of the image, use
|
|
|
|
#
|
|
|
|
# $ docker pull ldionne/libcxx-builder
|
|
|
|
# $ docker run -it <options> ldionne/libcxx-builder
|
|
|
|
#
|
|
|
|
# To update the image, rebuild it and push it to ldionne/libcxx-builder (which
|
|
|
|
# will obviously only work if you have permission to do so).
|
|
|
|
#
|
|
|
|
# $ docker build -t ldionne/libcxx-builder .
|
|
|
|
# $ docker push ldionne/libcxx-builder
|
|
|
|
#
|
2020-09-23 21:20:03 +08:00
|
|
|
|
|
|
|
FROM ubuntu:bionic
|
|
|
|
|
2020-11-06 04:13:27 +08:00
|
|
|
# Make sure apt-get doesn't try to prompt for stuff like our time zone, etc.
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2020-09-23 21:20:03 +08:00
|
|
|
|
2020-11-06 04:13:27 +08:00
|
|
|
RUN apt-get update && apt-get install -y bash curl
|
2020-09-30 00:48:44 +08:00
|
|
|
|
2020-11-06 04:13:27 +08:00
|
|
|
# Install various tools used by the build or the test suite
|
2020-12-17 06:00:09 +08:00
|
|
|
RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb
|
2020-12-03 05:35:08 +08:00
|
|
|
RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits
|
2020-09-30 00:48:44 +08:00
|
|
|
|
2020-09-23 21:20:03 +08:00
|
|
|
# Install the most recently released LLVM
|
2020-11-06 04:13:27 +08:00
|
|
|
RUN apt-get update && apt-get install -y lsb-release wget software-properties-common
|
2020-09-23 21:20:03 +08:00
|
|
|
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
2020-12-12 03:12:59 +08:00
|
|
|
RUN ln -s $(find /usr/bin -regex '^.+/clang\+\+-[0-9.]+$') /usr/bin/clang++
|
|
|
|
RUN ln -s $(find /usr/bin -regex '^.+/clang-[0-9.]+$') /usr/bin/clang
|
2020-09-23 21:20:03 +08:00
|
|
|
|
2020-12-17 06:00:09 +08:00
|
|
|
RUN apt-get update && apt-get install -y clang-format-11
|
|
|
|
# Make a symbolic link to git-clang-format (pointing to git-clang-format-<version>), if it doesn't exist.
|
|
|
|
RUN which git-clang-format || $(cd /usr/bin/ && ln -s $(ls git-clang-format-* | sort -rV | head -n 1) git-clang-format)
|
|
|
|
|
2020-09-23 21:20:03 +08:00
|
|
|
# Install a recent GCC
|
|
|
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
|
|
|
|
RUN apt-get update && apt install -y gcc-10 g++-10
|
2020-09-30 00:48:44 +08:00
|
|
|
RUN ln -f -s /usr/bin/g++-10 /usr/bin/g++
|
|
|
|
RUN ln -f -s /usr/bin/gcc-10 /usr/bin/gcc
|
2020-09-23 21:20:03 +08:00
|
|
|
|
|
|
|
# Install a recent CMake
|
|
|
|
RUN wget https://github.com/Kitware/CMake/releases/download/v3.18.2/cmake-3.18.2-Linux-x86_64.sh -O /tmp/install-cmake.sh
|
|
|
|
RUN bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
|
|
|
|
RUN rm /tmp/install-cmake.sh
|
|
|
|
|
2020-09-30 00:48:44 +08:00
|
|
|
# Change the user to a non-root user, since some of the libc++ tests
|
|
|
|
# (e.g. filesystem) require running as non-root. Also setup passwordless sudo.
|
2020-11-06 04:13:27 +08:00
|
|
|
RUN apt-get update && apt-get install -y sudo
|
2020-09-30 00:48:44 +08:00
|
|
|
RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
|
|
|
|
RUN useradd --create-home libcxx-builder
|
|
|
|
USER libcxx-builder
|
|
|
|
WORKDIR /home/libcxx-builder
|
2020-09-23 21:20:03 +08:00
|
|
|
|
2020-09-30 00:48:44 +08:00
|
|
|
# Install the Buildkite agent and dependencies. This must be done as non-root
|
|
|
|
# for the Buildkite agent to be installed in a path where we can find it.
|
2020-09-23 21:20:03 +08:00
|
|
|
RUN bash -c "$(curl -sL https://raw.githubusercontent.com/buildkite/agent/master/install.sh)"
|
2020-09-30 00:48:44 +08:00
|
|
|
ENV PATH="${PATH}:/home/libcxx-builder/.buildkite-agent/bin"
|
2020-09-23 21:20:03 +08:00
|
|
|
|
|
|
|
# By default, start the Buildkite agent (this requires a token).
|
|
|
|
CMD buildkite-agent start --tags "queue=libcxx-builders"
|