Disable libvpx unit tests in Dockerfile & prepare.py

This commit is contained in:
Ilya Fedin 2022-01-23 14:34:34 +04:00 committed by John Preston
parent ca5d2c115d
commit 6073da2843
2 changed files with 10 additions and 8 deletions

View File

@ -153,13 +153,13 @@ RUN git clone -b v1.11.0 --depth=1 $GIT/webmproject/libvpx.git
WORKDIR libvpx
RUN ./configure \
--target=x86_64-linux-gcc \
--disable-examples \
--disable-tools \
--disable-docs \
--enable-vp8 \
--enable-vp9 \
--enable-webm-io
--disable-examples \
--disable-unit-tests \
--disable-tools \
--disable-docs \
--enable-vp8 \
--enable-vp9 \
--enable-webm-io
RUN make -j$(nproc)
RUN make DESTDIR="$LibrariesPath/libvpx-cache" install

View File

@ -400,7 +400,7 @@ if customRunCommand:
stage('patches', """
git clone https://github.com/desktop-app/patches.git
cd patches
git checkout 1206363d59
git checkout 58ac8663f5
""")
stage('depot_tools', """
@ -649,6 +649,7 @@ depends:yasm/yasm
./configure --prefix=$USED_PREFIX \
--target=arm64-darwin20-gcc \
--disable-examples \
--disable-unit-tests \
--disable-tools \
--disable-docs \
--enable-vp8 \
@ -665,6 +666,7 @@ depends:yasm/yasm
./configure --prefix=$USED_PREFIX \
--target=x86_64-darwin20-gcc \
--disable-examples \
--disable-unit-tests \
--disable-tools \
--disable-docs \
--enable-vp8 \