From: Loic Dachary Date: Mon, 23 Mar 2015 20:29:29 +0000 (+0100) Subject: tests: add OpenSUSE 13.2 Dockerfile X-Git-Tag: v9.0.0~54^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=74d23b6a15aef55376f5d476a3a8753eb22adec7;p=ceph.git tests: add OpenSUSE 13.2 Dockerfile Signed-off-by: Loic Dachary --- diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 38a2b911253c..e962b074175c 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -103,6 +103,9 @@ EXTRA_DIST += \ $(srcdir)/test/centos-7/Dockerfile.in \ $(srcdir)/test/centos-7/install-deps.sh \ $(srcdir)/test/centos-7/ceph.spec.in \ + $(srcdir)/test/opensuse-13.2/Dockerfile.in \ + $(srcdir)/test/opensuse-13.2/install-deps.sh \ + $(srcdir)/test/opensuse-13.2/ceph.spec.in \ $(srcdir)/test/mon/mon-test-helpers.sh \ $(srcdir)/test/osd/osd-test-helpers.sh \ $(srcdir)/test/coverage.sh \ diff --git a/src/test/opensuse-13.2/Dockerfile.in b/src/test/opensuse-13.2/Dockerfile.in new file mode 100644 index 000000000000..85d91a2f6072 --- /dev/null +++ b/src/test/opensuse-13.2/Dockerfile.in @@ -0,0 +1,30 @@ +# +# Copyright (C) 2015 Red Hat +# +# Author: Loic Dachary +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Library Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Library Public License for more details. +# +# Environment variables are substituted via envsubst(1) +# +# user_id=$(id -u) +# os_version= the desired REPOSITORY TAG +# +FROM opensuse:%%os_version%% + +COPY install-deps.sh /root/ +COPY ceph.spec.in /root/ +# build dependencies +RUN cd /root ; ./install-deps.sh +# development tools +# nc (ncat) is required to run make check on firefly only (giant+ do not use nc) +RUN zypper --non-interactive install ccache valgrind gdb git python-virtualenv gdisk kpartx hdparm ncat sudo xmlstarlet parted +RUN useradd -M --uid %%user_id%% %%USER%% && echo '%%USER%% ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers diff --git a/src/test/opensuse-13.2/ceph.spec.in b/src/test/opensuse-13.2/ceph.spec.in new file mode 120000 index 000000000000..9abcafd12dbb --- /dev/null +++ b/src/test/opensuse-13.2/ceph.spec.in @@ -0,0 +1 @@ +../../../ceph.spec.in \ No newline at end of file diff --git a/src/test/opensuse-13.2/install-deps.sh b/src/test/opensuse-13.2/install-deps.sh new file mode 120000 index 000000000000..fc9c78b27ff6 --- /dev/null +++ b/src/test/opensuse-13.2/install-deps.sh @@ -0,0 +1 @@ +../../../install-deps.sh \ No newline at end of file