shithub: dav1d

Download patch

ref: 121b3bb34bd20d828bc880dfa6ab6b37b811b9b5
parent: 36f76f424f410f1d0427a9df55a34d8485e2ec8e
author: Ronald S. Bultje <rsbultje@gmail.com>
date: Mon Dec 17 04:16:13 EST 2018

CI: enforce lack of carriage return / tab

--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,17 @@
 stages:
+    - style
     - build
     - test
+
+style-check:
+    image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
+    stage: style
+    tags:
+        - debian
+        - amd64
+    script:
+        - git grep -n -e $'\t' --or -e $'\r' -- . ':(exclude)*/compat/*' && exit 1
+        - /bin/true
 
 build-debian:
     image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132