1
mirror of https://code.videolan.org/videolan/dav1d synced 2024-11-14 22:58:33 +01:00

gitlab-ci: Check for win32/win64 builds

This commit is contained in:
Hugo Beauzée-Luyssen 2018-09-25 17:52:45 +02:00
parent 6622002197
commit 9fd4ede0ec

View File

@ -2,7 +2,7 @@ stages:
- build
build-debian:
image: registry.videolan.org:5000/dav1d-debian-unstable:20180925105518
image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
stage: build
tags:
- debian
@ -10,3 +10,21 @@ build-debian:
script:
- meson build --buildtype release
- ninja -v -C build
build-win32:
image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
stage: build
tags:
- win32
script:
- meson build --buildtype release --cross-file /opt/crossfiles/i686-w64-mingw32.meson
- ninja -v -C build
build-win64:
image: registry.videolan.org:5000/dav1d-debian-unstable:20180925152615
stage: build
tags:
- win64
script:
- meson build --buildtype release --cross-file /opt/crossfiles/x86_64-w64-mingw32.meson
- ninja -v -C build