File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,13 @@ RUN cd ~/ffmpeg_sources && \
4949 ldconfig && \
5050 rm -rf ~/ffmpeg_sources
5151
52+ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v3.7.9/ccache-3.7.9.tar.gz && \
53+ tar -xf ccache-3.7.9.tar.gz && \
54+ cd ccache-3.7.9 && \
55+ linux32 ./configure && \
56+ make -j$(getconf _NPROCESSORS_ONLN) && \
57+ make install
58+
5259ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
5360ENV LDFLAGS -L/root/ffmpeg_build/lib
5461ENV PATH "$HOME/bin:$PATH"
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ function pre_build {
104104 export PATH=" /usr/local/opt/qt/bin:$PATH "
105105 fi
106106
107+ qmake -query
108+
107109 echo ' Installing FFmpeg'
108110
109111 if [ -n " $CACHE_STAGE " ]; then
@@ -123,8 +125,8 @@ function pre_build {
123125
124126 else
125127 echo " Running for linux"
128+ qmake-qt5 -query
126129 fi
127- qmake -query
128130}
129131
130132function run_tests {
You can’t perform that action at this time.
0 commit comments