mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 12:35:26 +00:00
2653304c8e
This will help us running audio tests under wine. BUG=b:237011316 TEST=presubmit Change-Id: Iba297159291abd135fb1972a19fa5b5c216fa956 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3971028 Commit-Queue: Vikram Auradkar <auradkar@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com>
67 lines
2.3 KiB
Docker
67 lines
2.3 KiB
Docker
# Copyright 2021 The ChromiumOS Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Development container for crosvm.
|
|
#
|
|
# Provides all dependencies specified in install-deps with some additonal
|
|
# logic to cache cargo data in CI runs.
|
|
#
|
|
# Note, if you are using docker, you will probably be using "Dockerfile.user".
|
|
|
|
FROM docker.io/debian:testing-20220822-slim
|
|
|
|
ENV RUSTUP_HOME=/usr/local/rustup \
|
|
CARGO_HOME=/usr/local/cargo \
|
|
PATH=/usr/local/cargo/bin:$PATH
|
|
|
|
# Use a dedicated target directory so we do not write into the source directory.
|
|
RUN mkdir -p /scratch/cargo_target \
|
|
&& mkdir /cache
|
|
|
|
# Prevent the container from writing __pycache__ files into the src.
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
ENV CARGO_TARGET_DIR=/scratch/cargo_target
|
|
|
|
# Add foreign architectures for cross-compilation.
|
|
RUN dpkg --add-architecture arm64 \
|
|
&& dpkg --add-architecture armhf
|
|
|
|
# Allow APT to cache packages between docker image builds
|
|
RUN rm -f /etc/apt/apt.conf.d/docker-clean; echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
|
|
|
|
# Setting this will help install-deps skip installing wine deps, which
|
|
# will be installed by Dockerfile.user
|
|
ENV DOCKER_WINE_SETUP=1
|
|
|
|
# Install dependencies (APT and cargo packages are cached between image builds for faster iterative builds).
|
|
COPY tools/install-deps tools/install-aarch64-deps tools/install-armhf-deps tools/install-docs-deps rust-toolchain /tools/
|
|
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
|
--mount=type=cache,target=/scratch/cargo_target,sharing=locked \
|
|
cd /tools \
|
|
&& chmod +x * \
|
|
&& apt-get update \
|
|
&& apt-get install --yes sudo \
|
|
&& ./install-deps \
|
|
&& ./install-aarch64-deps \
|
|
&& ./install-armhf-deps \
|
|
&& ./install-docs-deps
|
|
|
|
# Prepare wine64
|
|
RUN sudo ln -sf /usr/bin/wine64-stable /usr/bin/wine64 \
|
|
&& wine64 wineboot
|
|
|
|
# Prebuild aarch64 VM image for faster startup.
|
|
COPY tools/aarch64vm /tools/
|
|
COPY /tools/impl/testvm.py /tools/impl/
|
|
COPY /tools/impl/testvm/version /tools/impl/testvm/
|
|
RUN sudo chmod 755 -R /tools \
|
|
&& /tools/aarch64vm build
|
|
|
|
# Cache CARGO_HOME between container runs in CI.
|
|
VOLUME /cache
|
|
ENV CARGO_HOME=/cache/cargo_home
|
|
|
|
VOLUME /workspace
|
|
WORKDIR /workspace
|