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 WORKDIR libvpx
RUN ./configure \ RUN ./configure \
--target=x86_64-linux-gcc \ --disable-examples \
--disable-examples \ --disable-unit-tests \
--disable-tools \ --disable-tools \
--disable-docs \ --disable-docs \
--enable-vp8 \ --enable-vp8 \
--enable-vp9 \ --enable-vp9 \
--enable-webm-io --enable-webm-io
RUN make -j$(nproc) RUN make -j$(nproc)
RUN make DESTDIR="$LibrariesPath/libvpx-cache" install RUN make DESTDIR="$LibrariesPath/libvpx-cache" install

View File

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