]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tests: add Dockerfile for fedora 21 4333/head
authorLoic Dachary <ldachary@redhat.com>
Fri, 10 Apr 2015 13:09:00 +0000 (15:09 +0200)
committerLoic Dachary <ldachary@redhat.com>
Fri, 10 Apr 2015 13:09:00 +0000 (15:09 +0200)
Signed-off-by: Loic Dachary <ldachary@redhat.com>
src/test/Makefile.am
src/test/fedora-21/Dockerfile.in [new file with mode: 0644]
src/test/fedora-21/ceph.spec.in [new symlink]
src/test/fedora-21/install-deps.sh [new symlink]

index 140df2051cc65276d3da3352d161bbc2d50b02c9..b1dd7ddb298db0ec80420729b8f9ff281d484e61 100644 (file)
@@ -103,6 +103,9 @@ EXTRA_DIST += \
        $(srcdir)/test/ubuntu-14.04/Dockerfile.in \
        $(srcdir)/test/ubuntu-14.04/install-deps.sh \
        $(srcdir)/test/ubuntu-14.04/debian \
+       $(srcdir)/test/fedora-21/Dockerfile.in \
+       $(srcdir)/test/fedora-21/install-deps.sh \
+       $(srcdir)/test/fedora-21/ceph.spec.in \
        $(srcdir)/test/centos-6/Dockerfile.in \
        $(srcdir)/test/centos-6/install-deps.sh \
        $(srcdir)/test/centos-6/ceph.spec.in \
diff --git a/src/test/fedora-21/Dockerfile.in b/src/test/fedora-21/Dockerfile.in
new file mode 100644 (file)
index 0000000..9b606ea
--- /dev/null
@@ -0,0 +1,29 @@
+#
+# 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 fedora:%%os_version%%
+COPY install-deps.sh /root/
+COPY ceph.spec.in /root/
+# build dependencies
+RUN yum install -y which ; cd /root ; ./install-deps.sh
+# development tools
+# nc is required to run make check on firefly only (giant+ do not use nc)
+RUN yum install -y ccache valgrind gdb git python-virtualenv gdisk kpartx hdparm jq sudo xmlstarlet parted nc
+RUN useradd -M --uid %%user_id%% %%USER%% && echo '%%USER%% ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
diff --git a/src/test/fedora-21/ceph.spec.in b/src/test/fedora-21/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/fedora-21/install-deps.sh b/src/test/fedora-21/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