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:
authorKonstantin Pavlov <thresh@videolan.org>2019-02-02 13:25:46 +0300
committerKonstantin Pavlov <thresh@videolan.org>2019-02-07 00:35:40 +0300
commit8a19ee0e5644a7f204c18823c93b1b2797676b5b (patch)
tree08342e6ad2cf8945b9fdd26c3331fd8592f7e509 /.gitlab-ci.yml
parentb0ef764306decd63a18f2c961b1c602e77760323 (diff)
CI: Added armv7 build jobs.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 012ad17..8aa89d3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -163,6 +163,28 @@ build-debian-werror:
- env CC='clang-7' meson build --buildtype debug --werror
- ninja -C build
+build-debian-armv7:
+ stage: build
+ image: registry.videolan.org:5000/dav1d-debian-unstable-armv7:20190202101732
+ tags:
+ - armv7
+ - debian
+ script:
+ - meson build --buildtype release --werror
+ - ninja -C build
+ - cd build && meson test -v
+
+build-debian-armv7-clang-5:
+ stage: build
+ image: registry.videolan.org:5000/dav1d-debian-unstable-armv7:20190202101732
+ tags:
+ - armv7
+ - debian
+ script:
+ - env CC=clang-5.0 CFLAGS='-integrated-as' meson build --buildtype release
+ - ninja -C build
+ - cd build && meson test -v
+
test-debian:
image: registry.videolan.org:5000/dav1d-debian-unstable:20181114201132
stage: test