Skip to content

Commit

Permalink
test/docker/build.sh: Dependency update
Browse files Browse the repository at this point in the history
Update nasm to 2.15.05
Update aom to v2.0.1
Update dav1d to 0.8.0
Update libgav1 to commit b712ad2
Update rav1e to the 0.3 maintenance branch
  • Loading branch information
EwoutH authored and joedrago committed Jan 4, 2021
1 parent 723881f commit 38bad1c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ cargo install cargo-c

# NASM
cd
curl -L https://download.videolan.org/contrib/nasm/nasm-2.14.tar.gz | tar xvz
cd nasm-2.14
curl -L https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.gz | tar xvz
cd nasm-2.15.05
./configure --prefix=/usr && make -j2 && make install
nasm --version

# aom
cd
git clone -b v1.0.0-errata1-avif --depth 1 https://aomedia.googlesource.com/aom
git clone -b v2.0.1 --depth 1 https://aomedia.googlesource.com/aom
cd aom
mkdir build.avif
cd build.avif
Expand All @@ -43,7 +43,7 @@ ninja install

# dav1d
cd
git clone -b 0.6.0 --depth 1 https://code.videolan.org/videolan/dav1d.git
git clone -b 0.8.0 --depth 1 https://code.videolan.org/videolan/dav1d.git
cd dav1d
mkdir build
cd build
Expand All @@ -54,16 +54,16 @@ ninja install
cd
git clone --single-branch https://chromium.googlesource.com/codecs/libgav1
cd libgav1
git checkout 45a1d76
git clone https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp
git checkout b712ad2
git clone --single-branch https://github.com/abseil/abseil-cpp.git third_party/abseil-cpp
mkdir build
cd build
cmake -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=1 -DCMAKE_BUILD_TYPE=Release -DLIBGAV1_THREADPOOL_USE_STD_MUTEX=1 ..
ninja install

# rav1e
cd
git clone -b v0.3.1 --depth 1 https://github.com/xiph/rav1e.git
git clone -b 0.3 --depth 1 https://github.com/xiph/rav1e.git
cd rav1e
cargo cinstall --prefix=/usr --release

Expand Down

0 comments on commit 38bad1c

Please sign in to comment.