talkatu/builders

Parents 8946337ba860
Children b2428184de87
Move the debian image to buster-slim and add debian-buster-i386
--- a/Dockerfile.debian-buster-amd64 Tue Apr 30 02:44:25 2019 -0500
+++ b/Dockerfile.debian-buster-amd64 Tue Apr 30 02:51:25 2019 -0500
@@ -1,5 +1,5 @@
# vi:ft=dockerfile
-FROM debian:buster
+FROM debian:buster-slim
MAINTAINER Gary Kramlich <grim@reaperworld.com>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Dockerfile.debian-buster-i386 Tue Apr 30 02:51:25 2019 -0500
@@ -0,0 +1,32 @@
+# vi:ft=dockerfile
+FROM i386/debian:buster-slim
+
+MAINTAINER Gary Kramlich <grim@reaperworld.com>
+
+COPY debian/localepurge.selections /
+
+RUN set -ex && \
+ debconf-set-selections -v /localepurge.selections && \
+ apt-get update && \
+ apt-get install -y --no-install-recommends localepurge && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists
+
+RUN set -ex && \
+ apt-get update && \
+ apt-get install -y --no-install-recommends \
+ devscripts fakeroot debhelper libdistro-info-perl xvfb xauth \
+ build-essential meson gettext help2man mercurial libxml2-utils \
+ libglib2.0-dev gobject-introspection libgirepository1.0-dev libgtk-3-dev gtk-doc-tools \
+ libgumbo-dev libcmark-dev libgladeui-dev libgspell-1-dev \
+ && \
+ apt-get clean && \
+ rm -rf /var/lib/apt/lists
+
+CMD ["/build.sh"]
+
+ENV DISTRIBUTION=buster \
+ ARCH=i386
+
+COPY debian/build.sh /build.sh
+
--- a/convey.yml Tue Apr 30 02:44:25 2019 -0500
+++ b/convey.yml Tue Apr 30 02:51:25 2019 -0500
@@ -46,6 +46,11 @@
plans:
+ debian-buster-i386:
+ environment: [DISTRO=debian, VERSION=buster, ARCH=i386, FILES=debian]
+ stages:
+ - tasks: [import, build]
+
debian-buster-amd64:
environment: [DISTRO=debian, VERSION=buster, FILES=debian]
stages:
@@ -85,4 +90,3 @@
- tasks: [logout]
run: always
-