docker: remove unused Dockerfiles

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-ci/-/merge_requests/286>
This commit is contained in:
Matthew Waters 2020-04-24 14:16:23 +10:00
parent 2f504610b3
commit 38719d0aef
6 changed files with 0 additions and 55 deletions

View file

@ -1,2 +0,0 @@
build.sh

View file

@ -1,25 +0,0 @@
FROM base/devel:latest
ENV LANG=en_US.UTF-8
ENV GST_BUILD_PATH="/gst-build/"
ENV GST_VALIDATE_OUTPUT="/validate-output"
ENV GST_VALIDATE_TESTSUITES="$GST_VALIDATE_OUTPUT/gst-integration-testsuites"
ENV GST_BUILD_MESON_ARGS="-Dpython=disabled -Dlibav=enabled -Dugly=enabled -Dbad=enabled -Ddevtools=enabled -Dges=enabled -Drtsp_server=enabled -Domx=disabled -Dvaapi=disabled -Dsharp=enabled"
ENV PATH="/usr/lib/ccache/bin/:${PATH}"
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
RUN pacman -Sy --noconfirm python3 libxml2 libxslt cmake libyaml git make nodejs ninja clang llvm flex python-gobject gstreamer gst-plugins-base gst-plugins-bad gst-plugins-ugly gst-libav gst-editing-services python-pip npm json-glib gobject-introspection wget mono unzip glib2-docs xorg-xset xorg-server-xvfb ccache
RUN pip install --upgrade git+https://github.com/hotdoc/hotdoc.git@gst git+https://github.com/hotdoc/hotdoc_c_extension.git@gst meson
RUN mkdir $GST_VALIDATE_OUTPUT && \
git clone https://anongit.freedesktop.org/git/gstreamer/gst-integration-testsuites.git $GST_VALIDATE_TESTSUITES && \
cd $GST_VALIDATE_TESTSUITES/medias/ && \
python get_files.py defaults/
# get gst-build and make all subprojects available
RUN git clone git://anongit.freedesktop.org/gstreamer/gst-build $GST_BUILD_PATH && \
cd $GST_BUILD_PATH && \
meson build/ $GST_BUILD_MESON_ARGS && rm -Rf build/
RUN rm -Rf /var/cache/pacman/

View file

@ -1,8 +0,0 @@
#!/bin/sh
echo Building gstreamer/build-base-fedora:latest
docker build -t gstreamer/build-base-fedora:latest . -f Dockerfile-fedora
echo Building gstreamer/build-base-ubuntu:latest
docker build -t gstreamer/build-base-ubuntu:latest . -f Dockerfile-ubuntu

View file

@ -1,2 +0,0 @@
build.sh

View file

@ -1,9 +0,0 @@
FROM anapsix/alpine-java:latest
# Get the allure test report framework
RUN export ALLURE_VERSION=2.7.0 && \
wget "https://bintray.com/qameta/generic/download_file?file_path=io%2Fqameta%2Fallure%2Fallure%2F2.7.0%2Fallure-${ALLURE_VERSION}.zip" -O allure.zip
unzip allure.zip && \
mv allure-${ALLURE_VERSION} /opt/allure && \
chmod +x /opt/allure/bin/allure && \
rm allure.zip

View file

@ -1,9 +0,0 @@
#!/bin/sh
echo Building gstreamer/base-fedora:latest
docker build -t gstreamer/base-fedora:latest . -f Dockerfile-fedora
echo Building gstreamer/base-ubuntu:latest
docker build -t gstreamer/base-ubuntu:latest . -f Dockerfile-ubuntu