File tree 2 files changed +10
-1
lines changed
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 && \
49
49
ldconfig && \
50
50
rm -rf ~/ffmpeg_sources
51
51
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
+
52
59
ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
53
60
ENV LDFLAGS -L/root/ffmpeg_build/lib
54
61
ENV PATH "$HOME/bin:$PATH"
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ function pre_build {
104
104
export PATH=" /usr/local/opt/qt/bin:$PATH "
105
105
fi
106
106
107
+ qmake -query
108
+
107
109
echo ' Installing FFmpeg'
108
110
109
111
if [ -n " $CACHE_STAGE " ]; then
@@ -123,8 +125,8 @@ function pre_build {
123
125
124
126
else
125
127
echo " Running for linux"
128
+ qmake-qt5 -query
126
129
fi
127
- qmake -query
128
130
}
129
131
130
132
function run_tests {
You can’t perform that action at this time.
0 commit comments