Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dressel <code@deadcode.eu>2021-04-02 16:45:28 +0300
committerMatthias Dressel <code@deadcode.eu>2021-04-12 23:18:03 +0300
commitae8958bdc7d30847158eafcec14552213708402f (patch)
treeb6897d83220f242f8917262289c24414dba3acdb /.gitlab-ci.yml
parent7f5759744dd3fbcc7bf34244f945551a2f25ecd6 (diff)
CI: Fix asm checks
meson 0.57.0 introduced an optimization [0] for `meson test` to only rebuild test dependencies. This does not cover changing the build configuration anymore. [0] https://mesonbuild.com/Release-notes-for-0-57-0.html
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 668863a..3a566dc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -415,6 +415,7 @@ build-debian-ppc64le:
- avx2
script:
- meson configure build -Dtestdata_tests=true
+ - ninja -C build
- cd build
- exit_code=0
- time meson test -q --suite testdata-8 --suite testdata-10 --suite testdata-12 --test-args "--cpumask 0" || exit_code=$((exit_code + $?))