1
mirror of https://code.videolan.org/videolan/dav1d synced 2024-09-27 11:50:24 +02:00
dav1d/.gitlab-ci.yml

31 lines
786 B
YAML
Raw Normal View History

2018-09-23 13:11:05 +02:00
stages:
- build
build-debian:
image: registry.videolan.org:5000/dav1d-debian-unstable:20180927123816
2018-09-23 13:11:05 +02:00
stage: build
tags:
- debian
- amd64
script:
- meson build --buildtype release
- ninja -v -C build
build-win32:
image: registry.videolan.org:5000/dav1d-debian-unstable:20180927123816
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:20180927123816
stage: build
tags:
- win64
script:
- meson build --buildtype release --cross-file /opt/crossfiles/x86_64-w64-mingw32.meson
- ninja -v -C build