blob: 6152b05935934591c42a3d8fd4423c01c7c4b87d [file] [log] [blame]
Louis Dionnece556052020-09-23 09:20:03 -04001#===----------------------------------------------------------------------===##
2#
3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6#
7#===----------------------------------------------------------------------===##
8
9#
10# This Dockerfile describes the base image used to run the various libc++
11# build bots. By default, the image runs the Buildkite Agent, however one
12# can also just start the image with a shell to debug CI failures.
13#
14# To start a Buildkite Agent, run it as:
Louis Dionnef8002ae2021-06-21 16:21:39 -040015# $ docker run --env-file <secrets> -it $(docker build -q .)
Louis Dionnece556052020-09-23 09:20:03 -040016#
Louis Dionnef8002ae2021-06-21 16:21:39 -040017# The environment variables in `<secrets>` should be the ones necessary
18# to run a BuildKite agent.
Louis Dionnece556052020-09-23 09:20:03 -040019#
Louis Dionne06dbe822021-03-02 12:59:29 -050020# If you're only looking to run the Docker image locally for debugging a
21# build bot, see the `run-buildbot-container` script located in this directory.
Louis Dionnece556052020-09-23 09:20:03 -040022#
Louis Dionne06dbe822021-03-02 12:59:29 -050023# A pre-built version of this image is maintained on DockerHub as ldionne/libcxx-builder.
Louis Dionneef912fe2020-09-29 12:48:44 -040024# To update the image, rebuild it and push it to ldionne/libcxx-builder (which
25# will obviously only work if you have permission to do so).
26#
Louis Dionne0ae42262021-09-09 09:59:44 -040027# $ docker build -t ldionne/libcxx-builder libcxx/utils/ci
Louis Dionneef912fe2020-09-29 12:48:44 -040028# $ docker push ldionne/libcxx-builder
29#
Louis Dionnece556052020-09-23 09:20:03 -040030
31FROM ubuntu:bionic
32
Louis Dionne56662a12020-11-05 15:13:27 -050033# Make sure apt-get doesn't try to prompt for stuff like our time zone, etc.
34ENV DEBIAN_FRONTEND=noninteractive
35
Louis Dionne0ae42262021-09-09 09:59:44 -040036# This dummy command is meant to be edited from time to time, which causes the
37# CI builders to rebuild their copy of the Docker image. This is not a great
38# solution, however without that, the CI builders will keep the same cached
39# Docker image forever.
40RUN echo 1
41
Louis Dionne56662a12020-11-05 15:13:27 -050042RUN apt-get update && apt-get install -y bash curl
Louis Dionnece556052020-09-23 09:20:03 -040043
Louis Dionneef912fe2020-09-29 12:48:44 -040044# Install various tools used by the build or the test suite
Louis Dionne5d1db4d2020-12-16 17:00:09 -050045RUN apt-get update && apt-get install -y ninja-build python3 python3-sphinx python3-distutils git gdb
Louis Dionne4ed12082020-12-02 16:35:08 -050046RUN apt-get update && apt-get install -y libc6-dev-i386 # Required to cross-compile to 32 bits
Louis Dionneef912fe2020-09-29 12:48:44 -040047
David Spickett2c08c432021-10-06 16:05:47 +010048# Locales for gdb and localization tests
49RUN apt-get update && apt-get install -y language-pack-en language-pack-fr \
50 language-pack-ru language-pack-zh-hans
51# These two are not enabled by default so generate them
52RUN printf "fr_CA ISO-8859-1\ncs_CZ ISO-8859-2" >> /etc/locale.gen
53RUN mkdir /usr/local/share/i1en/
54RUN printf "fr_CA ISO-8859-1\ncs_CZ ISO-8859-2" >> /usr/local/share/i1en/SUPPORTED
55RUN locale-gen
56
Louis Dionne30a2a652021-07-08 12:19:53 -040057# Install Clang <latest>, <latest-1> and ToT, which are the ones we support.
58ENV LLVM_LATEST_VERSION=12
Louis Dionne56662a12020-11-05 15:13:27 -050059RUN apt-get update && apt-get install -y lsb-release wget software-properties-common
Marek Kurdejd17bd892021-01-07 12:02:56 +010060RUN wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
Louis Dionne30a2a652021-07-08 12:19:53 -040061RUN bash /tmp/llvm.sh $(($LLVM_LATEST_VERSION - 1)) # previous release
62RUN bash /tmp/llvm.sh $LLVM_LATEST_VERSION # latest release
63RUN bash /tmp/llvm.sh $(($LLVM_LATEST_VERSION + 1)) # current ToT
Louis Dionnece556052020-09-23 09:20:03 -040064
Louis Dionnebdb47662021-07-12 11:10:59 -040065# Make the ToT Clang the "default" compiler on the system
66RUN ln -fs /usr/bin/clang++-$(($LLVM_LATEST_VERSION + 1)) /usr/bin/c++ && [ -e $(readlink /usr/bin/c++) ]
67RUN ln -fs /usr/bin/clang-$(($LLVM_LATEST_VERSION + 1)) /usr/bin/cc && [ -e $(readlink /usr/bin/cc) ]
Louis Dionne30a2a652021-07-08 12:19:53 -040068
Marek Kurdejd17bd892021-01-07 12:02:56 +010069# Install clang-format
Louis Dionne30a2a652021-07-08 12:19:53 -040070RUN apt-get install -y clang-format-$LLVM_LATEST_VERSION
71RUN ln -s /usr/bin/clang-format-$LLVM_LATEST_VERSION /usr/bin/clang-format && [ -e $(readlink /usr/bin/clang-format) ]
72RUN ln -s /usr/bin/git-clang-format-$LLVM_LATEST_VERSION /usr/bin/git-clang-format && [ -e $(readlink /usr/bin/git-clang-format) ]
Louis Dionne5d1db4d2020-12-16 17:00:09 -050073
Louis Dionne30a2a652021-07-08 12:19:53 -040074# Install the most recent GCC
75ENV GCC_LATEST_VERSION=11
Louis Dionnece556052020-09-23 09:20:03 -040076RUN add-apt-repository ppa:ubuntu-toolchain-r/test
Louis Dionne30a2a652021-07-08 12:19:53 -040077RUN apt-get update && apt install -y gcc-$GCC_LATEST_VERSION g++-$GCC_LATEST_VERSION
78
Louis Dionnece556052020-09-23 09:20:03 -040079# Install a recent CMake
Louis Dionne32ccd952021-08-17 13:35:50 -040080RUN wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-linux-x86_64.sh -O /tmp/install-cmake.sh
Louis Dionnece556052020-09-23 09:20:03 -040081RUN bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
82RUN rm /tmp/install-cmake.sh
83
Louis Dionneef912fe2020-09-29 12:48:44 -040084# Change the user to a non-root user, since some of the libc++ tests
85# (e.g. filesystem) require running as non-root. Also setup passwordless sudo.
Louis Dionne56662a12020-11-05 15:13:27 -050086RUN apt-get update && apt-get install -y sudo
Louis Dionneef912fe2020-09-29 12:48:44 -040087RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
88RUN useradd --create-home libcxx-builder
89USER libcxx-builder
90WORKDIR /home/libcxx-builder
Louis Dionnece556052020-09-23 09:20:03 -040091
Louis Dionneef912fe2020-09-29 12:48:44 -040092# Install the Buildkite agent and dependencies. This must be done as non-root
93# for the Buildkite agent to be installed in a path where we can find it.
Louis Dionnece556052020-09-23 09:20:03 -040094RUN bash -c "$(curl -sL https://raw.githubusercontent.com/buildkite/agent/master/install.sh)"
Louis Dionneef912fe2020-09-29 12:48:44 -040095ENV PATH="${PATH}:/home/libcxx-builder/.buildkite-agent/bin"
Louis Dionne21240c22021-07-12 16:01:32 -040096RUN echo "tags=\"queue=libcxx-builders,arch=$(uname -m),os=linux\"" >> "/home/libcxx-builder/.buildkite-agent/buildkite-agent.cfg"
Louis Dionnece556052020-09-23 09:20:03 -040097
98# By default, start the Buildkite agent (this requires a token).
Louis Dionne21240c22021-07-12 16:01:32 -040099CMD buildkite-agent start