[CI] Let's try something... (#44398)

This commit is contained in:
nicogodet 2021-07-28 10:18:24 +02:00 committed by GitHub
parent 842485f751
commit 2ef94adc86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,16 +33,26 @@ RUN dnf -y install \
sqlite-devel \
unzip \
xorg-x11-server-Xvfb \
util-linux
util-linux \
wget \
openssl-devel \
libsecret-devel \
make \
automake \
gcc \
gcc-c++ \
kernel-devel \
ninja-build
RUN dnf -y install wget openssl-devel && cd /usr/src \
RUN cd /usr/src \
&& wget https://github.com/KDE/qca/archive/refs/tags/v2.3.3.zip \
&& unzip v2.3.3.zip \
&& cd qca-2.3.3 \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -DQT6=ON -GNinja \
&& mkdir build-qt6 \
&& cd build-qt6 \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -DQT6=ON -GNinja ../qca-2.3.3 \
&& ninja install
RUN dnf -y install libsecret-devel && cd /usr/src \
RUN cd /usr/src \
&& wget https://github.com/frankosterfeld/qtkeychain/archive/refs/heads/master.zip \
&& unzip master.zip \
&& cd qtkeychain-master \