shithub: dav1d

Download patch

ref: fc6eae6e51e3a3e914c807697a781bff702fbaea
parent: 4c7f424c802dcafb459cc5a14ab93e71b32897af
author: Janne Grunau <janne-vlc@jannau.net>
date: Sat Sep 29 18:06:14 EDT 2018

CI: add build-debian-aarch64 and build-debian-aarch64-clang-5

--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -60,3 +60,24 @@
         paths:
             - build/dav1d_install/
         expire_in: 1 week
+
+build-debian-aarch64:
+    stage: build
+    tags:
+        - aarch64
+        - debian
+    script:
+        - meson build --buildtype release
+        - ninja -C build
+        - cd build && meson test -v
+
+build-debian-aarch64-clang-5:
+    stage: build
+    tags:
+        - aarch64
+        - clang5
+        - debian
+    script:
+        - env CC=clang-5.0 CFLAGS='-integrated-as' meson build --buildtype release
+        - ninja -C build
+        - cd build && meson test -v