mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-25 21:00:09 +01:00
Debian stable, Debian testing and Ubuntu LTS provide a reasonable spectrum of old and new distributions. I'm only doing one build on each to avoid a combinatorial explosion of options. The Docker images don't have any deb-src apt sources set up, so don't use `apt-get build-dep`; just include dependencies manually. Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Philip Withnall <philip.withnall@collabora.co.uk> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=98889
10 lines
250 B
Text
10 lines
250 B
Text
FROM @ci_docker@
|
|
ENV container docker
|
|
|
|
ADD tools/ci-install.sh /ci-install.sh
|
|
RUN ci_suite="@ci_suite@" ci_distro="@ci_distro@" ci_in_docker=yes /ci-install.sh
|
|
|
|
ADD . /home/user/ci
|
|
RUN chown -R user:user /home/user/ci
|
|
WORKDIR /home/user/ci
|
|
USER user
|