Skip to content

Commit 08a3d91

Browse files
authored
Merge pull request #1239 from strukturag/ci-fail-on-thirdparty-build-errors
CI: Fail if third-party build fails.
2 parents 4161994 + e8ca091 commit 08a3d91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/install-ci-linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ if [ "$WITH_DAV1D" = "1" ]; then
199199

200200
export PATH="$PATH:$HOME/.local/bin"
201201
cd third-party
202-
sh dav1d.cmd # dav1d does not support this option anymore: -Denable_avx512=false
202+
sh -e dav1d.cmd # dav1d does not support this option anymore: -Denable_avx512=false
203203
cd ..
204204
fi
205205

@@ -208,6 +208,6 @@ if [ "$WITH_RAV1E" = "1" ]; then
208208

209209
export PATH="$PATH:$HOME/.cargo/bin"
210210
cd third-party
211-
sh rav1e.cmd
211+
sh -e rav1e.cmd
212212
cd ..
213213
fi

third-party/rav1e.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
: # Also, the error that "The target windows-msvc is not supported yet" can safely be ignored provided that rav1e/target/release
1414
: # contains rav1e.h and rav1e.lib.
1515

16-
git clone -b 0.5 --depth 1 https://github.com/xiph/rav1e.git
16+
git clone -b 0.6 --depth 1 https://github.com/xiph/rav1e.git
1717

1818
cd rav1e
1919
cargo install cargo-c

0 commit comments

Comments
 (0)