added gdb
fixed python bdist_wheel warning
This commit is contained in:
parent
4465b0fc52
commit
2899b93c16
2 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,7 @@ FROM debian:testing
|
||||||
RUN echo "deb [trusted=yes] http://apt.llvm.org/buster/ llvm-toolchain-buster-10 main\n$(cat /etc/apt/sources.list)" > /etc/apt/sources.list ;\
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/buster/ llvm-toolchain-buster-10 main\n$(cat /etc/apt/sources.list)" > /etc/apt/sources.list ;\
|
||||||
apt-get update ;\
|
apt-get update ;\
|
||||||
apt-get install -y --no-install-recommends locales \
|
apt-get install -y --no-install-recommends locales \
|
||||||
cmake ninja-build git ca-certificates clang lld ccache python3 build-essential \
|
cmake ninja-build git ca-certificates clang lld ccache python3 build-essential gdb \
|
||||||
clang-tidy clang-format \
|
clang-tidy clang-format \
|
||||||
python3-psutil zip wget \
|
python3-psutil zip wget \
|
||||||
openjdk-11-jdk \
|
openjdk-11-jdk \
|
||||||
|
@ -30,7 +30,8 @@ COPY start_agent.sh /scripts/
|
||||||
# install python dependencies for the scripts
|
# install python dependencies for the scripts
|
||||||
# ADD will checks that contentent of a file has changed.
|
# ADD will checks that contentent of a file has changed.
|
||||||
ADD "https://raw.githubusercontent.com/google/llvm-premerge-checks/master/scripts/requirements.txt" requirements.txt
|
ADD "https://raw.githubusercontent.com/google/llvm-premerge-checks/master/scripts/requirements.txt" requirements.txt
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install wheel ; \
|
||||||
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
RUN groupadd -g ${gid} ${group} ;\
|
RUN groupadd -g ${gid} ${group} ;\
|
||||||
useradd -c "buildkite user" -d /home/${user} -u ${uid} -g ${gid} -m ${user} ;\
|
useradd -c "buildkite user" -d /home/${user} -u ${uid} -g ${gid} -m ${user} ;\
|
||||||
|
|
|
@ -4,7 +4,7 @@ RUN echo "deb [trusted=yes] http://apt.llvm.org/buster/ llvm-toolchain-buster-10
|
||||||
apt-get update ;\
|
apt-get update ;\
|
||||||
apt-get install -y --no-install-recommends locales \
|
apt-get install -y --no-install-recommends locales \
|
||||||
cmake ninja-build git ca-certificates clang lld ccache python3 build-essential openssh-client\
|
cmake ninja-build git ca-certificates clang lld ccache python3 build-essential openssh-client\
|
||||||
clang-tidy clang-format \
|
clang-tidy clang-format gdb \
|
||||||
python3-psutil arcanist zip wget \
|
python3-psutil arcanist zip wget \
|
||||||
openjdk-11-jdk \
|
openjdk-11-jdk \
|
||||||
python3-pip python3-setuptools \
|
python3-pip python3-setuptools \
|
||||||
|
@ -36,7 +36,8 @@ COPY known_hosts /home/${user}/.ssh/known_hosts
|
||||||
# install python dependencies for the scripts
|
# install python dependencies for the scripts
|
||||||
# ADD will checks that contentent of a file has changed.
|
# ADD will checks that contentent of a file has changed.
|
||||||
ADD "https://raw.githubusercontent.com/google/llvm-premerge-checks/master/scripts/requirements.txt" requirements.txt
|
ADD "https://raw.githubusercontent.com/google/llvm-premerge-checks/master/scripts/requirements.txt" requirements.txt
|
||||||
RUN pip3 install -r requirements.txt
|
RUN pip3 install wheel ; \
|
||||||
|
pip3 install -r requirements.txt
|
||||||
|
|
||||||
RUN groupadd -g ${gid} ${group} ;\
|
RUN groupadd -g ${gid} ${group} ;\
|
||||||
useradd -c "Jenkins user" -d /home/${user} -u ${uid} -g ${gid} -m ${user} ;\
|
useradd -c "Jenkins user" -d /home/${user} -u ${uid} -g ${gid} -m ${user} ;\
|
||||||
|
|
Loading…
Reference in a new issue