Skip to content

Commit

Permalink
Merge #44
Browse files Browse the repository at this point in the history
44: Add rustc dependencies for containerised CI r=ltratt a=jacob-hughes

rustgc is now CI'd on a minimal docker container on the soft-dev build server. We need to explicitly install the rustc dependencies for each build.

Co-authored-by: Jake Hughes <[email protected]>
  • Loading branch information
bors[bot] and jacob-hughes authored Jan 18, 2022
2 parents 57272b4 + fe04975 commit 29c5ba8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .buildbot_dockerfile_debian
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM debian:bullseye
ARG CI_UID
RUN useradd -m -u ${CI_UID} ci
RUN apt-get update && \
apt-get -y install build-essential curl cmake python3 git ninja-build time autoconf libtool libssl-dev
WORKDIR /ci
RUN chown ${CI_UID}:${CI_UID} .
COPY --chown=${CI_UID}:${CI_UID} . .
CMD sh -x .buildbot.sh

0 comments on commit 29c5ba8

Please sign in to comment.