diff options
author | louiz’ <louiz@louiz.org> | 2016-04-22 11:58:18 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-04-22 11:58:18 +0200 |
commit | 38a59c38ffbebb59fafadace297361a0dbf519de (patch) | |
tree | 22f4b8a096a0744445bb227c0a6d5f5623ef6d5a /docker/biboumi-test/Dockerfile | |
parent | 3fe55ab0b3935339e77c86c55cd81434c29edec8 (diff) | |
download | biboumi-38a59c38ffbebb59fafadace297361a0dbf519de.tar.gz biboumi-38a59c38ffbebb59fafadace297361a0dbf519de.tar.bz2 biboumi-38a59c38ffbebb59fafadace297361a0dbf519de.tar.xz biboumi-38a59c38ffbebb59fafadace297361a0dbf519de.zip |
Add a Dockerfile to build a biboumi-test image
Diffstat (limited to 'docker/biboumi-test/Dockerfile')
-rw-r--r-- | docker/biboumi-test/Dockerfile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/docker/biboumi-test/Dockerfile b/docker/biboumi-test/Dockerfile new file mode 100644 index 0000000..704b413 --- /dev/null +++ b/docker/biboumi-test/Dockerfile @@ -0,0 +1,64 @@ +# This Dockerfile creates a docker image suitable to run biboumi’s build and +# tests. For example, it can be used on with gitlab-ci. + +FROM docker.io/fedora:latest + +RUN dnf update -y + +# Needed to build biboumi +RUN dnf install -y gcc-c++ +RUN dnf install -y clang +RUN dnf install -y valgrind +RUN dnf install -y c-ares-devel +RUN dnf install -y sqlite-devel +RUN dnf install -y libuuid-devel +RUN dnf install -y cmake +RUN dnf install -y make +RUN dnf install -y expat-devel +RUN dnf install -y libidn-devel +RUN dnf install -y uuid-devel +RUN dnf install -y systemd-devel +RUN dnf install -y rubygem-ronn + +# Needed to run tests +RUN dnf install -y git +RUN dnf install -y fedora-packager python3-lxml +RUN dnf install -y lcov + +# To be able to create the RPM +RUN dnf install -y rpmdevtools + +# Install botan +RUN git clone https://github.com/randombit/botan.git +RUN cd botan && git checkout 1.11.28 && ./configure.py --prefix=/usr && make -j8 && make install +RUN rm -rf /botan + +# Install litesql +RUN git clone git://git.louiz.org/litesql +RUN mkdir /litesql/build && cd /litesql/build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make -j8 +RUN cd /litesql/build && make install +RUN rm -rf /litesql + +RUN ldconfig + +# Install slixmpp, for e2e tests +RUN git clone git://git.louiz.org/slixmpp +RUN pip3 install pyasn1 +RUN dnf install -y python3-devel +RUN cd slixmpp && python3 setup.py build && python3 setup.py install + +RUN useradd tester + +# Install charybdis, for e2e tests +RUN dnf install -y automake autoconf flex flex-devel bison libtool-ltdl-devel openssl-devel +RUN dnf install -y libtool +RUN git clone https://github.com/charybdis-ircd/charybdis.git && cd charybdis +RUN cd /charybdis && ./autogen.sh && ./configure --prefix=/home/tester/ircd --bindir=/usr/bin && make -j8 && make install +RUN chown -R tester:tester /home/tester/ircd +RUN rm -rf /charybdis + +RUN su - tester -c "echo export LANG=fr_FR.utf-8 >> /home/tester/.bashrc" + +WORKDIR /home/tester +USER tester + |