]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
tests: add OpenSUSE 13.2 Dockerfile
authorLoic Dachary <ldachary@redhat.com>
Mon, 23 Mar 2015 20:29:29 +0000 (21:29 +0100)
committerLoic Dachary <ldachary@redhat.com>
Tue, 24 Mar 2015 13:11:47 +0000 (14:11 +0100)
Signed-off-by: Loic Dachary <ldachary@redhat.com>
src/test/Makefile.am
src/test/opensuse-13.2/Dockerfile.in [new file with mode: 0644]
src/test/opensuse-13.2/ceph.spec.in [new symlink]
src/test/opensuse-13.2/install-deps.sh [new symlink]

index 38a2b911253c4fcdc3128ec6262079688b3a453a..e962b074175c89b01993d2530b39a2673b1d092b 100644 (file)
@@ -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 (file)
index 0000000..85d91a2
--- /dev/null
@@ -0,0 +1,30 @@
+#
+# Copyright (C) 2015 Red Hat <contact@redhat.com>
+#
+# Author: Loic Dachary <loic@dachary.org>
+#
+# 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 (symlink)
index 0000000..9abcafd
--- /dev/null
@@ -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 (symlink)
index 0000000..fc9c78b
--- /dev/null
@@ -0,0 +1 @@
+../../../install-deps.sh
\ No newline at end of file