Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorMichael Schuster <michael@schuster.ms>2020-05-27 03:50:11 +0300
committerKevin Ottens <ervin@ipsquad.net>2020-05-27 14:42:33 +0300
commit9262577446922f01c065b756b4da55143ec7873a (patch)
treefd30dd0b79b66b3b11b9ecd375f87cc8b616ca60 /client
parentce719d87bcf5d1d1700a044d3b50f9da4ac62d1a (diff)
Remove images for unsupported and EOL Qt versions (No. 2)
- AppImage: The current script is at: https://github.com/nextcloud/desktop/blob/master/admin/linux/build-appimage.sh - Windows: The build system was changed to use MSVC: https://github.com/nextcloud/client-building/ Signed-off-by: Michael Schuster <michael@schuster.ms>
Diffstat (limited to 'client')
-rw-r--r--client/Dockerfile-AppImage49
-rw-r--r--client/Dockerfile-Windows37
2 files changed, 0 insertions, 86 deletions
diff --git a/client/Dockerfile-AppImage b/client/Dockerfile-AppImage
deleted file mode 100644
index eb447f8..0000000
--- a/client/Dockerfile-AppImage
+++ /dev/null
@@ -1,49 +0,0 @@
-FROM ubuntu:trusty
-
-MAINTAINER Roeland Jago Douma <roeland@famdouma.nl>
-
-RUN apt-get update && \
- apt-get install -y wget libsqlite3-dev git \
- software-properties-common build-essential mesa-common-dev \
- fuse rsync curl
-
-RUN add-apt-repository -y ppa:beineri/opt-qt595-trusty && \
- apt-get update && \
- apt-get install -y qt59base qt59tools qt59webengine qt59svg
-
-RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test && \
- apt-get update && \
- apt-get install -y gcc-7 g++-7
-
-RUN apt-get install -y pkg-config libsecret-1-dev
-
-RUN cd /tmp && \
- wget https://www.openssl.org/source/openssl-1.1.0h.tar.gz && \
- tar -xvf openssl-1.1.0h.tar.gz && \
- cd openssl-1.1.0h && \
- ./config && \
- make && \
- make install && \
- cd .. && \
- rm -rf openssl*
-
-RUN cd /tmp && \
- wget https://zlib.net/zlib-1.2.11.tar.gz && \
- tar -xvf zlib-1.2.11.tar.gz && \
- cd zlib-1.2.11 && \
- ./configure && \
- make && \
- make install && \
- cd .. && \
- rm -rf zlib*
-
-RUN cd /tmp && \
- wget https://cmake.org/files/v3.11/cmake-3.11.4-Linux-x86_64.tar.gz && \
- tar -xvf cmake-3.11.4-Linux-x86_64.tar.gz && \
- cd cmake-3.11.4-Linux-x86_64 && \
- cp -r bin /usr/ && \
- cp -r share /usr/ && \
- cp -r doc /usr/share/ && \
- cp -r man /usr/share/ && \
- cd .. && \
- rm -rf cmake*
diff --git a/client/Dockerfile-Windows b/client/Dockerfile-Windows
deleted file mode 100644
index 6063c96..0000000
--- a/client/Dockerfile-Windows
+++ /dev/null
@@ -1,37 +0,0 @@
-FROM opensuse:42.1
-
-MAINTAINER Julius Härtl <jus@bitgrid.net>
-
-ENV TERM ansi
-ENV HOME /root
-
-ENV REFRESHED_AT 20160421
-
-RUN zypper --non-interactive --gpg-auto-import-keys refresh
-RUN zypper --non-interactive --gpg-auto-import-keys ar http://download.opensuse.org/repositories/windows:/mingw/openSUSE_Leap_42.1/windows:mingw.repo
-RUN zypper --non-interactive --gpg-auto-import-keys ar http://download.opensuse.org/repositories/isv:ownCloud:toolchains:mingw:win32:2.3/openSUSE_Leap_42.1/isv:ownCloud:toolchains:mingw:win32:2.3.repo
-RUN zypper --non-interactive --gpg-auto-import-keys install cmake make mingw32-cross-binutils mingw32-cross-cpp mingw32-cross-gcc \
- mingw32-cross-gcc-c++ mingw32-cross-pkg-config mingw32-filesystem \
- mingw32-headers mingw32-runtime site-config mingw32-libwebp \
- mingw32-cross-libqt5-qmake mingw32-cross-libqt5-qttools mingw32-libqt5* \
- mingw32-qt5keychain* mingw32-angleproject* \
- mingw32-cross-nsis mingw32-libopenssl* \
- mingw32-sqlite* kdewin-png2ico \
- osslsigncode wget
-
-# RPM depends on curl for installs from HTTP
-RUN zypper --non-interactive --gpg-auto-import-keys install curl
-
-# sudo needed for building as user
-RUN zypper --non-interactive --gpg-auto-import-keys install sudo
-
-# Use packaged UAC dependencies
-RUN zypper --non-interactive --gpg-auto-import-keys install mingw32-cross-nsis-plugin-uac mingw32-cross-nsis-plugin-nsprocess
-
-# Required for checksumming
-RUN zypper --non-interactive --gpg-auto-import-keys install mingw32-zlib-devel
-
-# Required for windres not to crash
-RUN zypper --non-interactive --gpg-auto-import-keys install glibc-locale
-
-CMD /bin/bash