shithub: dav1d

Download patch

ref: 55439739f239a7027ae383572bf153c562ac6869
parent: e36ebb6fc2a996663e11170e2f91ca4153b12995
author: Konstantin Pavlov <[email protected]>
date: Fri Mar 6 19:21:49 EST 2020

CI: add examples job build

This currently does not check the vulkan/placebo codepath since needed
packages are not yet in Debian unstable.

--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@
     - test
 
 .debian-amd64-common:
-    image: registry.videolan.org/dav1d-debian-unstable:20200306141107
+    image: registry.videolan.org/dav1d-debian-unstable:20200306210534
     stage: build
     tags:
         - docker
@@ -103,6 +103,14 @@
                       --cross-file /opt/crossfiles/linux32.meson
         - ninja -C build
         - cd build && meson test -v
+
+build-debian-examples:
+    extends: .debian-amd64-common
+    script:
+        - meson build --buildtype release
+                      --werror
+                      -Denable_examples=true
+        - ninja -C build
 
 build-win32:
     extends: .debian-amd64-common