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:
authorHenrik Gramner <gramner@twoorioles.com>2021-08-23 20:22:01 +0300
committerHenrik Gramner <gramner@twoorioles.com>2021-08-31 12:47:42 +0300
commit64c65de3faf1fa5e0272858203a9590f4ca31927 (patch)
tree9dbb39ddf653a0c04fb36540319665ed75239f76 /.gitlab-ci.yml
parent94a0e5ec13febf376d9bf29ed8d0bb693c690c5c (diff)
x86: Automatically convert SSE asm to AVX when compiling for AVX targets
Requires meson 0.51 or newer (older versions will just keep the SSE).
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3a566dc..c0029a5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -178,6 +178,21 @@ build-debian-bitdepth-16:
-Dbitdepths=16
- ninja -C build
+build-debian-avx:
+ extends: .debian-amd64-common
+ tags:
+ - docker
+ - avx2
+ - amd64
+ variables:
+ CFLAGS: '-mavx'
+ script:
+ - meson build --buildtype debug
+ --werror
+ - ninja -C build
+ - cd build
+ - time meson test -v --suite checkasm
+
build-win32:
extends: .debian-amd64-common
script: